From 62f556bdc1a2a25021dcccc97af4dfa522ab5789 Mon Sep 17 00:00:00 2001 From: Philipp Sippl Date: Sat, 18 Nov 2023 19:06:03 +0100 Subject: [PATCH] remove println --- src/protocol/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/protocol/mod.rs b/src/protocol/mod.rs index 5a78b9b..fecedc0 100644 --- a/src/protocol/mod.rs +++ b/src/protocol/mod.rs @@ -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::>(); - let now = Instant::now(); let zkey = zkey(depth); let ark_proof = create_proof_with_reduction_and_matrices::<_, CircomReduction>( &zkey.0, @@ -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) }