We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0de5ef9 + 39812e5 commit 01bb8e7Copy full SHA for 01bb8e7
services/requester/pool.go
@@ -65,8 +65,7 @@ func (t *TxPool) Send(
65
t.pool.Store(evmTx.Hash(), evmTx)
66
defer t.pool.Delete(evmTx.Hash())
67
68
- backoff := retry.WithMaxDuration(time.Minute*3, retry.NewFibonacci(time.Millisecond*100))
69
-
+ backoff := retry.WithMaxDuration(time.Minute*1, retry.NewConstant(time.Second*1))
70
return retry.Do(ctx, backoff, func(ctx context.Context) error {
71
res, err := t.client.GetTransactionResult(ctx, flowTx.ID())
72
if err != nil {
0 commit comments