Fix current_delta initialisation in verifier

This commit is contained in:
ying tong 2020-09-04 19:05:08 +08:00 committed by GitHub
parent 06a4cfe13b
commit 10a4b4252c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -112,7 +112,7 @@ impl<C: CurveAffine> Proof<C> {
}
let mut right = self.permutation_product_inv_evals[permutation_index];
let mut current_delta = x_0;
let mut current_delta = x_0 * &x_3;
for advice_eval in queries
.iter()
.map(|&query_index| self.advice_evals[query_index])