Skip to content

Commit

Permalink
Fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Oct 2, 2024
1 parent 3324e53 commit cb7dde0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/rfq/api/rest/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ func (r *QuoterAPIServer) PutRFQRequest(c *gin.Context) {
if passiveQuote != nil && passiveQuote.DestAmount != nil {
span.SetAttributes(attribute.String("passive_quote_dest_amount", *passiveQuote.DestAmount))
}
quote, _ := getBestQuote(activeQuote, passiveQuote)
quote := getBestQuote(activeQuote, passiveQuote)

// construct the response
var resp model.PutRFQResponse
Expand Down

0 comments on commit cb7dde0

Please sign in to comment.