You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Verification requires checking the proof against the transcript and constraint system.
109
109
// The verifier can be convinced that the prover indeed knows `x` so that `P = x*G`. This doesn't require any interaction with the prover other than receiving the transcript.
110
-
let verified = nizk.verify(&commitment,&challenge,&response).is_ok();
110
+
let verified = nizk.verify_batchable(&proof).is_ok();
0 commit comments