diff --git a/miner/algo_greedy.go b/miner/algo_greedy.go index d4912e4fa354..d1fd1146259d 100644 --- a/miner/algo_greedy.go +++ b/miner/algo_greedy.go @@ -42,10 +42,6 @@ func (b *greedyBuilder) buildBlock(simBundles []types.SimulatedBundle, transacti env := b.inputEnvironment.copy() orders := types.NewTransactionsByPriceAndNonce(env.signer, transactions, simBundles, env.header.BaseFee) - log.Debug("buildBlock", "totalBundles", len(simBundles)) - for _, bundle := range simBundles { - log.Debug("buildBlock", "simBHash", bundle.OriginalBundle.Hash) - } envDiff := newEnvironmentDiff(env) usedBundles := make([]types.SimulatedBundle, 0) diff --git a/miner/worker.go b/miner/worker.go index 5957fe17151f..4f4af59d3272 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -1917,7 +1917,6 @@ func signalToErr(signal int32) error { func (w *worker) createProposerPayoutTx(env *environment, recipient *common.Address, profit *big.Int) (*types.Transaction, error) { sender := w.coinbase.String() - log.Info(sender) nonce := env.state.GetNonce(w.coinbase) fee := new(big.Int).Mul(big.NewInt(paymentTxGas), env.header.BaseFee) amount := new(big.Int).Sub(profit, fee)