From 4beddf1e44f43188150e9ee01e329a31c46b9d9a Mon Sep 17 00:00:00 2001 From: Vitaly Drogan Date: Wed, 28 Sep 2022 19:43:14 +0300 Subject: [PATCH] squash more annoying logs (#37) --- miner/algo_greedy.go | 4 ---- miner/worker.go | 1 - 2 files changed, 5 deletions(-) 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 ba27815982f5..9eadaf662d59 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -1916,7 +1916,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)