Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 6bb10f5

Browse files
dvushavalonche
authored andcommitted
squash more annoying logs (#37)
1 parent 7faf54f commit 6bb10f5

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

miner/algo_greedy.go

-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ func (b *greedyBuilder) buildBlock(simBundles []types.SimulatedBundle, transacti
4242
env := b.inputEnvironment.copy()
4343

4444
orders := types.NewTransactionsByPriceAndNonce(env.signer, transactions, simBundles, env.header.BaseFee)
45-
log.Debug("buildBlock", "totalBundles", len(simBundles))
46-
for _, bundle := range simBundles {
47-
log.Debug("buildBlock", "simBHash", bundle.OriginalBundle.Hash)
48-
}
4945
envDiff := newEnvironmentDiff(env)
5046

5147
usedBundles := make([]types.SimulatedBundle, 0)

miner/worker.go

-1
Original file line numberDiff line numberDiff line change
@@ -1902,7 +1902,6 @@ func signalToErr(signal int32) error {
19021902

19031903
func (w *worker) createProposerPayoutTx(env *environment, recipient *common.Address, profit *big.Int) (*types.Transaction, error) {
19041904
sender := w.coinbase.String()
1905-
log.Info(sender)
19061905
nonce := env.state.GetNonce(w.coinbase)
19071906
fee := new(big.Int).Mul(big.NewInt(paymentTxGas), env.header.BaseFee)
19081907
amount := new(big.Int).Sub(profit, fee)

0 commit comments

Comments
 (0)