mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 15:03:45 +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()
|
txs.Pop()
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if len(b) >= int(maxBytesPerTxList) {
|
if len(b) > int(maxBytesPerTxList) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue