diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 0630fe1f03..e5b36fdd71 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1642,7 +1642,6 @@ func AccessList(ctx context.Context, b Backend, blockNrOrHash rpc.BlockNumberOrH } else { to = crypto.CreateAddress(args.from(), uint64(*args.Nonce)) } - fmt.Printf("nonce %d\nto %x\n", *args.Nonce, to) isPostMerge := header.Difficulty.Sign() == 0 // Retrieve the precompiles since they don't need to be added to the access list precompiles := vm.ActivePrecompiles(b.ChainConfig().Rules(header.Number, isPostMerge, header.Time))