removes debug prints

This commit is contained in:
Kobi Gurkan 2019-09-04 15:54:48 +03:00
parent 470dff3d92
commit 1388c0a55e
2 changed files with 3 additions and 7 deletions

View File

@ -232,7 +232,6 @@ fn main() {
&last_response_file_hash,
i == 0,
);
println!("last challenge hash: {}", into_hex(&last_challenge_file_hash));
// Deserialize the accumulator provided by the player in
// their response file. It's stored in the transcript in
@ -245,8 +244,6 @@ fn main() {
UseCompression::Yes,
).expect("unable to read uncompressed accumulator");
println!("test: {}", response_file_accumulator.tau_powers_g1[8190]);
let response_file_pubkey = PublicKey::<Bn256>::read::<Bn256CeremonyParameters>(&response_readable_map, UseCompression::Yes).unwrap();
// Compute the hash of the response file. (we had it in uncompressed
// form in the transcript, but the response file is compressed to save
@ -257,8 +254,6 @@ fn main() {
&last_challenge_file_hash
);
println!("last response file hash: {}", into_hex(&last_response_file_hash));
// Verify the transformation from the previous accumulator to the new
// one. This also verifies the correctness of the accumulators and the
// public keys, with respect to the transcript so far.

View File

@ -5,6 +5,7 @@ rm response
rm new_challenge
rm challenge_old
rm response_old
rm phase1radix*
cargo run --release --bin new_constrained
cargo run --release --bin compute_constrained