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 6d21303 commit ea7f501
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion prover/src/common/prover/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ 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
1 change: 0 additions & 1 deletion prover/src/inner/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ impl<C: TargetCircuit> Prover<C> {
let raw_vk = serialize_vk(self.inner.pk(id).unwrap().get_vk());
Proof::from_snark(snark, raw_vk)
});


if let (Some(output_dir), Ok(proof)) = (output_dir, &result) {
proof.dump(output_dir, &filename)?;
Expand Down

0 comments on commit ea7f501

Please sign in to comment.