Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 3779f4d

Browse files
authored
fix: blob bytes <= max allowed (#1373)
1 parent c534681 commit 3779f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aggregator/src/blob.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ impl<const N_SNARKS: usize> BatchData<N_SNARKS> {
302302
// We only consider the data from `valid` chunks and ignore the padded chunks.
303303
let blob_bytes = self.get_encoded_batch_data_bytes();
304304
assert!(
305-
blob_bytes.len() < N_BLOB_BYTES,
305+
blob_bytes.len() <= N_BLOB_BYTES,
306306
"too many bytes in batch data"
307307
);
308308

0 commit comments

Comments
 (0)