Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
philsippl committed Nov 18, 2023
1 parent 307f1c9 commit 62f556b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/protocol/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ fn generate_proof_rs(
let witness = witness::calculate_witness(inputs, graph).unwrap();
let full_assignment = witness.into_iter().map(|x| Fr::from_repr(x.into()).unwrap()).collect::<Vec<_>>();

let now = Instant::now();
let zkey = zkey(depth);
let ark_proof = create_proof_with_reduction_and_matrices::<_, CircomReduction>(
&zkey.0,
Expand All @@ -174,7 +173,6 @@ fn generate_proof_rs(
full_assignment.as_slice(),
)?;
let proof = ark_proof.into();
println!("proof generation took: {:.2?}", now.elapsed());

Ok(proof)
}
Expand Down

0 comments on commit 62f556b

Please sign in to comment.