Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Thegaram committed Aug 20, 2023
1 parent f352b46 commit 1b77926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ loop:
if !tx.IsL1MessageTx() && !w.chainConfig.Scroll.IsValidBlockSize(w.current.blockSize+tx.Size()) {
log.Trace("Block size limit reached", "have", w.current.blockSize, "want", w.chainConfig.Scroll.MaxTxPayloadBytesPerBlock, "tx", tx.Size())
sealBlock = true
nextTransaction = false
nextTransaction = false // TODO: consider single tx overflow
continue
}
// Error may be ignored here. The error has already been checked
Expand Down

0 comments on commit 1b77926

Please sign in to comment.