Skip to content

Commit

Permalink
added missing "," - fixed comptime bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mralj committed Oct 7, 2024
1 parent 1ccbc95 commit b72098e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/tracers/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ func (api *API) TraceCall(ctx context.Context, args ethapi.TransactionArgs, bloc
rollupsConfig := vm.RollupPrecompileActivationConfig{
L1SLoad: vm.L1SLoad{
L1RpcClient: api.backend.GetL1RpcClient(),
GetLatestL1BlockNumber: func() *big.Int { return vmctx.BlockNumber }
GetLatestL1BlockNumber: func() *big.Int { return vmctx.BlockNumber },
},
}
precompiles := vm.ActivePrecompiledContracts(rules, &rollupsConfig)
Expand Down

0 comments on commit b72098e

Please sign in to comment.