Skip to content

Commit

Permalink
Update plonky2/src/batch_fri/verifier.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Robin Salen <[email protected]>
  • Loading branch information
sai-deng and Nashtare authored Jul 15, 2024
1 parent 782f5eb commit 4abdd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plonky2/src/batch_fri/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn verify_batch_fri_proof<
);

let mut precomputed_reduced_evals = Vec::with_capacity(openings.len());
for opn in openings.iter() {
for opn in openings {
let pre = PrecomputedReducedOpenings::from_os_and_alpha(opn, challenges.fri_alpha);
precomputed_reduced_evals.push(pre);
}
Expand Down

0 comments on commit 4abdd99

Please sign in to comment.