Skip to content

Commit

Permalink
wip: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lastminutedev committed Jan 18, 2024
1 parent 5d9730e commit 6d21303
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions prover/src/common/prover/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ impl Prover {
let (params, pk) = self.params_and_pk(id, degree, &C::dummy_inner_circuit())?;
let snark = gen_snark_shplonk(params, pk, circuit, &mut rng, None::<String>);

log::info!("After generate snark - snark - {:?}", snark);
Ok(snark)
}

Expand Down
4 changes: 0 additions & 4 deletions prover/src/inner/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ impl<C: TargetCircuit> Prover<C> {
.map(|snark| {
let raw_vk = serialize_vk(self.inner.pk(id).unwrap().get_vk());
Proof::from_snark(snark, raw_vk)
})
.map_err(|e| {
log::error!("Failed to generate inner proof: {:?}", e);
e
});


Expand Down

0 comments on commit 6d21303

Please sign in to comment.