From a4cd9aa73be6e29a4fa27399e752b47108eb3e3e Mon Sep 17 00:00:00 2001 From: golangisfun123 Date: Thu, 10 Oct 2024 11:00:25 -0500 Subject: [PATCH] fix error msg --- contrib/opbot/internal/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/opbot/internal/client.go b/contrib/opbot/internal/client.go index 350ab5bb18..26bf3732a6 100644 --- a/contrib/opbot/internal/client.go +++ b/contrib/opbot/internal/client.go @@ -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 {