Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ColoCarletti committed Aug 16, 2024
1 parent 8e900fa commit b899d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prover/crates/bin/prover_cli/src/commands/status/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ pub fn get_witness_generator_job_status_from_vec(
matches!(
job.get_status(),
WitnessJobStatus::Failed(_) | WitnessJobStatus::InProgress,
) && job.get_attempts() as u32 >= max_attempts
) && job.get_attempts() >= max_attempts
}) {
Status::Stuck
} else if prover_jobs.iter().all(|job| {
Expand Down

0 comments on commit b899d62

Please sign in to comment.