Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Sep 13, 2024
1 parent 4d57206 commit 4f4915e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_tests/retryable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ func testFlatCallTracer(t *testing.T, ctx context.Context, client rpc.ClientInte
var blockNumber hexutil.Uint64
err := client.CallContext(ctx, &blockNumber, "eth_blockNumber")
Require(t, err)
for i := uint64(0); i < uint64(blockNumber); i++ {
for i := int64(0); i < int64(blockNumber); i++ {
flatCallTracer := "flatCallTracer"
var result interface{}
err = client.CallContext(ctx, result, "debug_traceBlockByNumber", rpc.BlockNumber(i).String(), &tracers.TraceConfig{Tracer: &flatCallTracer})
Expand Down

0 comments on commit 4f4915e

Please sign in to comment.