diff --git a/miner/taiko_worker.go b/miner/taiko_worker.go index 0bb0f29cc0..3ffbe95ba3 100644 --- a/miner/taiko_worker.go +++ b/miner/taiko_worker.go @@ -271,7 +271,7 @@ func (w *worker) commitL2Transactions( txs.Pop() continue } - if len(b) >= int(maxBytesPerTxList) { + if len(b) > int(maxBytesPerTxList) { break }