Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
rw0x0 committed Sep 27, 2024
1 parent 693612a commit 4e8cc9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion co-noir/co-ultrahonk/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ where
}

pub fn prove(
&mut self,
mut self,
proving_key: ProvingKey<T, P>,
) -> HonkProofResult<HonkProof<TranscriptFieldType>> {
tracing::trace!("CoUltraHonk prove");
Expand Down
2 changes: 1 addition & 1 deletion co-noir/co-ultrahonk/tests/poseidon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn poseidon_plaindriver_test() {
let prover_crs = ProvingKey::get_prover_crs(&builder, CRS_PATH_G1).unwrap();
let proving_key = ProvingKey::create(&driver, builder, prover_crs);

let mut prover = CoUltraHonk::new(driver);
let prover = CoUltraHonk::new(driver);
let proof = prover.prove(proving_key).unwrap();
let proof_u8 = proof.to_buffer();

Expand Down

0 comments on commit 4e8cc9d

Please sign in to comment.