diff --git a/miner/taiko_worker.go b/miner/taiko_worker.go index 12bfea0efe1e..82f6624c1b9e 100644 --- a/miner/taiko_worker.go +++ b/miner/taiko_worker.go @@ -44,7 +44,7 @@ func (w *worker) BuildTransactionsLists( } // Check if tx pool is empty at first. - if len(w.eth.TxPool().Pending(txpool.PendingFilter{BaseFee: uint256.MustFromBig(baseFee), OnlyPlainTxs: true})) == 0 { + if len(w.eth.TxPool().Pending(txpool.PendingFilter{MinTip: uint256.NewInt(minTip), BaseFee: uint256.MustFromBig(baseFee), OnlyPlainTxs: true})) == 0 { return txsLists, nil }