We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f46d94 commit 4fde6f3Copy full SHA for 4fde6f3
benches/r1cs.rs
@@ -144,7 +144,7 @@ impl KShuffleGadget {
144
.map(|v| prover.commit(*v, Scalar::random(&mut blinding_rng)))
145
.unzip();
146
147
- let cs = prover.finalize_inputs();
+ let mut cs = prover.finalize_inputs();
148
149
Self::fill_cs(&mut cs, &input_vars, &output_vars);
150
@@ -178,7 +178,7 @@ impl KShuffleGadget {
178
.map(|commitment| verifier.commit(*commitment))
179
.collect();
180
181
- let cs = verifier.finalize_inputs();
+ let mut cs = verifier.finalize_inputs();
182
183
184
0 commit comments