Skip to content

Commit e1d9b1a

Browse files
committed
rfq: fix log message term from "ask" to "bid"
Corrected the log message to use "bid" instead of "ask" as the original term was incorrect.
1 parent 4bda4ea commit e1d9b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rfq/negotiator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ func (n *Negotiator) HandleIncomingSellRequest(
439439
sendOutgoingMsg(msg)
440440

441441
// Add an error to the error channel and return.
442-
err = fmt.Errorf("failed to query ask price from "+
442+
err = fmt.Errorf("failed to query bid price from "+
443443
"oracle: %w", err)
444444
n.cfg.ErrChan <- err
445445
return

0 commit comments

Comments
 (0)