Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
taratorio committed Jan 14, 2025
1 parent d7e1878 commit 3dc8c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/integration/commands/cross_reference.go
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ func crossReferenceBlockHashes(ctx context.Context, logger log.Logger, startBloc
eg.SetLimit(maxParallelRequests)
for blockNum := startBlockNum; blockNum < endBlockNum; blockNum++ {
eg.Go(func() error {
blockFields, err := fetchBlockViaRpc(logger, rpcUrl, blockNum)
blockFields, err := fetchBlockViaRpcWithRetry(ctx, logger, rpcUrl, blockNum)
if err != nil {
return err
}

0 comments on commit 3dc8c7a

Please sign in to comment.