From 5b243e4b42bf100d3b71d19868d5bc6a7107ae24 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Tue, 8 Oct 2024 19:17:26 +0700 Subject: [PATCH] remove print statement --- internal/ethapi/api.go | 1 - 1 file changed, 1 deletion(-) 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))