diff --git a/cmd/geth/config.go b/cmd/geth/config.go index cb0786516507..17496c13aea1 100644 --- a/cmd/geth/config.go +++ b/cmd/geth/config.go @@ -185,7 +185,6 @@ func makeFullNode(ctx *cli.Context) (*node.Node, ethapi.Backend) { ) } } - log.Info("Final Eth Config: ", cfg.Eth) backend, eth := utils.RegisterEthService(stack, &cfg.Eth) // Create gauge with geth system and build information diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index 7cbf8e759e7a..cc21c066163b 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1865,7 +1865,6 @@ func SetDNSDiscoveryDefaults(cfg *ethconfig.Config, genesis common.Hash) { // RegisterEthService adds an Ethereum client to the stack. // The second return value is the full node instance. func RegisterEthService(stack *node.Node, cfg *ethconfig.Config) (ethapi.Backend, *eth.Ethereum) { - log.Info("RegisterEthService called with cfg: ", cfg) backend, err := eth.New(stack, cfg) if err != nil { Fatalf("Failed to register the Ethereum service: %v", err) @@ -2126,7 +2125,6 @@ func MakeChain(ctx *cli.Context, stack *node.Node, readonly bool) (*core.BlockCh cache.TrieDirtyLimit = ctx.Int(CacheFlag.Name) * ctx.Int(CacheGCFlag.Name) / 100 } vmcfg := vm.Config{EnablePreimageRecording: ctx.Bool(VMEnableDebugFlag.Name)} - log.Info("VM Config: EnablePreimageRecording=", vmcfg.EnablePreimageRecording) if ctx.IsSet(ZeroFeeAddressesFlag.Name) { for _, addr := range ctx.StringSlice(ZeroFeeAddressesFlag.Name) { vmcfg.ZeroFeeAddresses = append( @@ -2136,7 +2134,6 @@ func MakeChain(ctx *cli.Context, stack *node.Node, readonly bool) (*core.BlockCh } log.Info("VM Config: ZeroFeeAddresses=", vmcfg.ZeroFeeAddresses) } - log.Info("Final VM Config: ", vmcfg) // Disable transaction indexing/unindexing by default. chain, err := core.NewBlockChain(chainDb, cache, gspec, nil, engine, vmcfg, nil, nil) if err != nil { diff --git a/core/blockchain.go b/core/blockchain.go index 051b1ceaa9c1..15a3bf5d0579 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -303,7 +303,6 @@ func NewBlockChain(db ethdb.Database, cacheConfig *CacheConfig, genesis *Genesis engine: engine, vmConfig: vmConfig, } - log.Info("VM Config: ", bc.vmConfig) bc.flushInterval.Store(int64(cacheConfig.TrieTimeLimit)) bc.forker = NewForkChoice(bc, shouldPreserve) bc.stateCache = state.NewDatabaseWithNodeDB(bc.db, bc.triedb) diff --git a/core/state_transition.go b/core/state_transition.go index 04623f4a6b93..db4c4eb12100 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -467,7 +467,6 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) { bothFees := baseFee.Add(baseFee, priorityFee) if slices.Contains(st.evm.Config.ZeroFeeAddresses, sender.Address()) { - fmt.Printf("Zero fee address %v\n", sender.Address().Hex()) st.state.AddBalance(sender.Address(), bothFees) } else { st.state.AddBalance(treasuryAccount, bothFees)