Skip to content

Commit

Permalink
remove reference
Browse files Browse the repository at this point in the history
  • Loading branch information
jobez committed Nov 2, 2023
1 parent f5ec981 commit 858338f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bellpepper/r1cs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl<G: Group> NovaWitness<G> for SatisfyingAssignment<G> {
shape: &R1CSShape<G>,
ck: &CommitmentKey<G>,
) -> Result<(R1CSInstance<G>, R1CSWitness<G>), NovaError> {
let W = R1CSWitness::<G>::new(shape, &self.aux_assignment())?;
let W = R1CSWitness::<G>::new(shape, self.aux_assignment())?;
let X = &self.input_assignment()[1..];

let comm_W = W.commit(ck);
Expand Down

0 comments on commit 858338f

Please sign in to comment.