Skip to content

Commit c6c5460

Browse files
a couple of comments
1 parent b97cc46 commit c6c5460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

noir-projects/noir-protocol-circuits/crates/rollup-lib/src/block_root/block_root_rollup_inputs.nr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)