We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 276c152 commit d7bcec1Copy full SHA for d7bcec1
1 file changed
core/utils/eth_client_utils.go
@@ -24,7 +24,7 @@ func WaitForTransactionReceiptRetryable(client eth.InstrumentedClient, fallbackC
24
receipt_func := func() (*types.Receipt, error) {
25
receipt, err := client.TransactionReceipt(context.Background(), txHash)
26
if err != nil {
27
- receipt, err = client.TransactionReceipt(context.Background(), txHash)
+ receipt, err = fallbackClient.TransactionReceipt(context.Background(), txHash)
28
29
return nil, err
30
}
0 commit comments