Skip to content

Commit

Permalink
Remove blinds
Browse files Browse the repository at this point in the history
  • Loading branch information
darth-cy committed Dec 4, 2024
1 parent c86debd commit 88029e3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions spartan_parallel/src/r1csproof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ impl<S: SpartanExtensionField> R1CSProof<S> {
num_witness_secs: usize,
num_inputs: Vec<usize>,
claim: &S,
blind_claim: &S,
evals_eq: &mut DensePolynomial<S>,
evals_ABC: &mut DensePolynomialPqx<S>,
evals_z: &mut DensePolynomialPqx<S>,
Expand Down Expand Up @@ -321,7 +320,6 @@ impl<S: SpartanExtensionField> R1CSProof<S> {
let r_C: S = transcript.challenge_scalar(b"challenge_Cz");

let claim_phase2 = r_A * *Az_claim + r_B * *Bz_claim + r_C * *Cz_claim;
let blind_claim_phase2 = r_A * Az_blind + r_B * Bz_blind + r_C * Cz_blind;

let timer_tmp = Timer::new("prove_abc_gen");
let evals_ABC = {
Expand Down Expand Up @@ -386,7 +384,6 @@ impl<S: SpartanExtensionField> R1CSProof<S> {
num_witness_secs,
num_inputs.clone(),
&claim_phase2,
&blind_claim_phase2,
&mut eq_p_rp_poly,
&mut ABC_poly,
&mut Z_poly,
Expand Down

0 comments on commit 88029e3

Please sign in to comment.