mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
Fix current_delta initialisation in verifier
This commit is contained in:
parent
06a4cfe13b
commit
10a4b4252c
1 changed files with 1 additions and 1 deletions
|
|
@ -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])
|
||||
|
|
|
|||
Loading…
Reference in a new issue