Skip to content

Commit

Permalink
fix error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
golangisfun123 committed Oct 10, 2024
1 parent 50c4ecc commit a4cd9aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/opbot/internal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func (r *rfqClientImpl) GetRFQByTxID(ctx context.Context, txID string) (*GetRFQB
SetResult(&res).
Get(fmt.Sprintf(getRequestByTxHash, txID))
if err != nil {
return nil, "", fmt.Errorf("failed to get quote request by tx hash: %w", err)
return nil, "", fmt.Errorf("failed to get quote request by tx ID: %w", err)
}

if resp.StatusCode() != http.StatusOK {
Expand Down

0 comments on commit a4cd9aa

Please sign in to comment.