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

Commit 706ba9e

Browse files
committed
fix: blob bytes <= max allowed (#1373)
1 parent f40b905 commit 706ba9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aggregator/src/blob.rs

+1-1
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)