remove print statement

This commit is contained in:
Jared Wasinger 2024-10-08 19:17:26 +07:00
parent 6d3b00013a
commit 5b243e4b42

View file

@ -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))