Skip to content

Commit

Permalink
Update prover.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseiVambol authored Mar 3, 2024
1 parent 5b7abca commit 840da81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/src/plonk/mv_lookup/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl<C: CurveAffine> Prepared<C> {
for i in 0..u {
// Π(φ_i(X))
let fi_prod = || {
let mut prod = C::Scalar::one();
let mut prod = C::Scalar::ONE;
for compressed_input_expression in self.compressed_inputs_expressions.iter() {
prod *= *beta + compressed_input_expression[i];
}
Expand Down

0 comments on commit 840da81

Please sign in to comment.