Skip to content

Commit

Permalink
debug: add more logs4
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonberg1997 committed Apr 23, 2024
1 parent 0542677 commit 9058649
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions miner/worker_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ 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", "plain", len(pendingPlainTxs), "blob", len(pendingBlobTxs))

// Split the pending transactions into locals and remotes
// Fill the block with all available pending transactions.
localPlainTxs, remotePlainTxs = make(map[common.Address][]*txpool.LazyTransaction), pendingPlainTxs
Expand Down

0 comments on commit 9058649

Please sign in to comment.