From fd3084823baf8c48e083ea3584a884b77cbd6826 Mon Sep 17 00:00:00 2001 From: Roshan Date: Tue, 23 Apr 2024 15:21:23 +0800 Subject: [PATCH] debug: add more logs6 --- miner/worker_builder.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/miner/worker_builder.go b/miner/worker_builder.go index be74723de9..18dbf00641 100644 --- a/miner/worker_builder.go +++ b/miner/worker_builder.go @@ -64,12 +64,12 @@ func (w *worker) fillTransactionsAndBundles(interruptCh chan int32, env *environ { w.mu.RLock() - tip := w.tip + // tip := w.tip w.mu.RUnlock() // Retrieve the pending transactions pre-filtered by the 1559/4844 dynamic fees filter := txpool.PendingFilter{ - MinTip: tip, + // MinTip: tip, } if env.header.BaseFee != nil { filter.BaseFee = uint256.MustFromBig(env.header.BaseFee) @@ -83,7 +83,7 @@ func (w *worker) fillTransactionsAndBundles(interruptCh chan int32, env *environ filter.OnlyPlainTxs, filter.OnlyBlobTxs = false, true pendingBlobTxs := w.eth.TxPool().Pending(filter) - log.Info("pending tx count", "tip", tip, "plain", len(pendingPlainTxs), "blob", len(pendingBlobTxs)) + log.Info("pending tx count", "plain", len(pendingPlainTxs), "blob", len(pendingBlobTxs)) // Split the pending transactions into locals and remotes // Fill the block with all available pending transactions.