Skip to content

Commit

Permalink
Nits
Browse files Browse the repository at this point in the history
  • Loading branch information
iquerejeta committed Dec 12, 2023
1 parent 8e50c66 commit f733ea1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion halo2_proofs/examples/cost-model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,8 @@ fn main() {
let opts = CliCostOptions::parse_args_default_or_exit();
let c = ModelCircuit::from(opts.to_cost_options());
println!("{:#?}", c);
println!("Proof size: {} bytes", c.proof_size::<32, 32>(CommitmentScheme::IPA));
println!(
"Proof size: {} bytes",
c.proof_size::<32, 32>(CommitmentScheme::IPA)
);
}

0 comments on commit f733ea1

Please sign in to comment.