Skip to content

Commit 8524673

Browse files
committed
Update comments
1 parent 01636c5 commit 8524673

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

recursion/src/recursive_generation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ where
250250
// Check PoW witness.
251251
challenger.observe(opening_proof.pow_witness);
252252

253-
// Sample a challenge and decompose it into bits. Add the nonzero bits to the challenges.
253+
// Sample a challenge and decompose it into bits. Add all bits to the challenges.
254254
let rand_f: Val<SC> = challenger.sample();
255255
let rand_usize = rand_f.as_canonical_biguint().to_u64_digits()[0] as usize;
256256
// Get the bits. The total number of bits is the number of bits in a base field element.

recursion/src/recursive_pcs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ where
568568

569569
let alpha = challenges[0];
570570
let betas = &challenges[1..1 + num_betas];
571-
// Between the betas and the query indices, we have the PoW challenge, which we ignore here.
571+
572572
let query_indices = &challenges[1 + num_betas..1 + num_betas + num_queries];
573573

574574
// Calculate the maximum height of the FRI proof tree.

0 commit comments

Comments
 (0)