Skip to content

Commit

Permalink
chore(PJM): Nits & cleanups post initial merge (#2740)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilLuta committed Aug 27, 2024
1 parent dda48ba commit beaf155
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
1 change: 0 additions & 1 deletion prover/crates/bin/prover_job_monitor/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ async fn main() -> anyhow::Result<()> {

let general_config = load_general_config(opt.config_path).context("general config")?;

println!("general_config = {general_config:?}");
let database_secrets = load_database_secrets(opt.secrets_path).context("database secrets")?;

let observability_config = general_config
Expand Down

This file was deleted.

12 changes: 6 additions & 6 deletions prover/crates/lib/prover_dal/src/fri_witness_generator_dal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -927,12 +927,12 @@ impl FriWitnessGeneratorDal<'_, '_> {
"#,
AggregationRound::RecursionTip as i64,
)
.fetch_all(self.storage.conn())
.await
.unwrap()
.into_iter()
.map(|row| (row.l1_batch_number as u64))
.collect()
.fetch_all(self.storage.conn())
.await
.unwrap()
.into_iter()
.map(|row| (row.l1_batch_number as u64))
.collect()
}

pub async fn requeue_stuck_leaf_jobs(
Expand Down

0 comments on commit beaf155

Please sign in to comment.