We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d57f4 commit 784dbdeCopy full SHA for 784dbde
crates/l2/sequencer/l1_committer.rs
@@ -362,7 +362,10 @@ impl L1Committer {
362
};
363
364
let Ok((bundle, latest_blob_size)) = result else {
365
- warn!(
+ if block_to_commit_number == first_block_of_batch {
366
+ return Err(CommitterError::InternalError("Not enough blob space for a single block batch".to_string()));
367
+ }
368
+ warn!(
369
"Batch size limit reached. Any remaining blocks will be processed in the next batch."
370
);
371
// Break loop. Use the previous generated blobs_bundle.
0 commit comments