mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
fix(taiko_worker): fix a size limit check in commitL2Transactions (#245)
This commit is contained in:
parent
8622b2cce0
commit
7a75d5e6b4
1 changed files with 1 additions and 1 deletions
|
|
@ -271,7 +271,7 @@ func (w *worker) commitL2Transactions(
|
|||
txs.Pop()
|
||||
continue
|
||||
}
|
||||
if len(b) >= int(maxBytesPerTxList) {
|
||||
if len(b) > int(maxBytesPerTxList) {
|
||||
break
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue