Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plonk/src/nightfall/ipa_snark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ where
None
};
drop(polys_and_eval_sets);
ark_std::println!("get challenges during proving: {:?}", challenges);
Ok((
Proof {
wires_poly_comms,
Expand Down
1 change: 1 addition & 0 deletions plonk/src/nightfall/ipa_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ where
proof,
extra_transcript_init_msg,
)?;
ark_std::println!("challenges: {:?}", challenges);

// pre-compute alpha related values
let alpha_2 = challenges.alpha.square();
Expand Down
2 changes: 1 addition & 1 deletion plonk/src/proof_system/snark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ where
};
plookup_proofs_vec.push(plookup_proof);
}

ark_std::println!("get challenges during proving: {:?}", challenges);
Ok((
BatchProof {
wires_poly_comms_vec,
Expand Down
1 change: 1 addition & 0 deletions plonk/src/proof_system/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ where
batch_proof,
extra_transcript_init_msg,
)?;
ark_std::println!("get challenges during verification: {:?}", challenges);

// pre-compute alpha related values
let alpha_2 = challenges.alpha.square();
Expand Down
Loading