diff --git a/src/plonk/prover.rs b/src/plonk/prover.rs index 10c3fe4..e722c7e 100644 --- a/src/plonk/prover.rs +++ b/src/plonk/prover.rs @@ -514,7 +514,7 @@ impl Proof { { instances.push(ProverQuery { point: x_3, - poly: poly, + poly, blind: *blind, eval: *eval, }); @@ -529,7 +529,7 @@ impl Proof { { instances.push(ProverQuery { point: x_3, - poly: poly, + poly, blind: Blind::default(), eval: *eval, }); @@ -544,7 +544,7 @@ impl Proof { { instances.push(ProverQuery { point: x_3_inv, - poly: poly, + poly, blind: *blind, eval: *eval, });