Skip to content

Commit

Permalink
fix ipa multiopen test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Jan 8, 2024
1 parent 0623e6b commit 18d93e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/src/poly/ipa/multiopen/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl<'params, C: CurveAffine> Verifier<'params, IPACommitmentScheme<C>>
let (q_commitment, x_1_power) = &mut q_commitments[set_idx];
match new_commitment {
CommitmentReference::Commitment(c) => {
q_commitment.append_term(C::Scalar::ONE, (*c).into());
q_commitment.append_term(*x_1_power, (*c).into());
}
CommitmentReference::MSM(msm) => {
let mut msm = msm.clone();
Expand Down

0 comments on commit 18d93e7

Please sign in to comment.