From 10a4b4252cceb4819f1720b3e32ce11b35b5a370 Mon Sep 17 00:00:00 2001 From: ying tong Date: Fri, 4 Sep 2020 19:05:08 +0800 Subject: [PATCH] Fix current_delta initialisation in verifier --- src/plonk/verifier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plonk/verifier.rs b/src/plonk/verifier.rs index 3dcb429..aaa7520 100644 --- a/src/plonk/verifier.rs +++ b/src/plonk/verifier.rs @@ -112,7 +112,7 @@ impl Proof { } 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])