Skip to content

Commit

Permalink
remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
dprats committed Dec 9, 2024
1 parent 232911e commit e22b34a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions clients/cli/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let z_st = tr.input(start).expect("error starting circuit trace");
let mut proof = IVCProof::new(&z_st);

let mut completed_fraction = 0.0;
let mut steps_proven = 0;

println!(
Expand All @@ -201,7 +200,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
for step in start..end {
proof = prove_seq_step(Some(proof), &pp, &tr).expect("error proving step");
steps_proven += 1;
completed_fraction = steps_proven as f32 / steps_to_prove as f32;

let progress_duration = progress_time.elapsed();
let proof_cycles_hertz = k as f64 * 1000.0 / progress_duration.as_millis() as f64;
Expand Down

0 comments on commit e22b34a

Please sign in to comment.