File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -213,12 +213,12 @@ pub(crate) mod tests {
213213 fn correct_blobs_with_non_empty_fields () {
214214 // Note: this test will not run in unconstrained, because it reaches the foreign call
215215 // TODO(#10323): remove the oracle and switch this test to unconstrained
216- // Fill three blobs completely with different values (to avoid a constant polynomial)
216+ // Fill BLOBS_PER_BLOCK blobs completely with different values (to avoid a constant polynomial)
217217 let mut blob : [Field ; FIELDS_PER_BLOB * BLOBS_PER_BLOCK ] =
218218 [0 ; FIELDS_PER_BLOB * BLOBS_PER_BLOCK ];
219219 for j in 0 ..BLOBS_PER_BLOCK {
220220 for i in 0 ..FIELDS_PER_BLOB {
221- blob [j * FIELDS_PER_BLOB + i ] = ((j + 3 ) * (i + 1 )) as Field ;
221+ blob [j * FIELDS_PER_BLOB + i ] = ((j + 3 ) * (i + 1 )) as Field ; // 3 is arbitrary.
222222 }
223223 }
224224 // Init. injected values:
You can’t perform that action at this time.
0 commit comments