Skip to content

Commit

Permalink
Fix: send to reqChan
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Sep 30, 2024
1 parent 64389c4 commit 0c07fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/rfq/relayer/quoter/quoter.go
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ func (m *Manager) SubscribeActiveRFQ(ctx context.Context) (err error) {
return fmt.Errorf("error generating active RFQ message: %w", err)
}
fmt.Printf("%s generated response: %v\n", time.Now().String(), resp)
respChan <- resp
reqChan <- resp
}
}
}
Expand Down

0 comments on commit 0c07fe4

Please sign in to comment.