Skip to content

Commit

Permalink
fix : lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun Jangra authored and Arun Jangra committed Jun 20, 2024
1 parent 5546839 commit 8af2ecb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions crates/orchestrator/src/jobs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use crate::queue::job_queue::{add_job_to_process_queue, add_job_to_verification_
pub mod constants;
pub mod da_job;
pub mod proving_job;
pub mod prover_job;
pub mod register_proof_job;
pub mod snos_job;
pub mod state_update_job;
Expand Down
2 changes: 1 addition & 1 deletion crates/orchestrator/src/tests/workers/proving/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async fn test_proving_worker(#[case] incomplete_runs: bool) -> Result<(), Box<dy
.withf(|queue, _payload, _delay| queue == JOB_PROCESSING_QUEUE);

let config =
init_config(Some(format!("http://localhost:{}", server.port())), Some(db), Some(queue), Some(da_client)).await;
init_config(Some(format!("http://localhost:{}", server.port())), Some(db), Some(queue), Some(da_client), None).await;
config_force_init(config).await;

let proving_worker = ProvingWorker {};
Expand Down
2 changes: 1 addition & 1 deletion crates/orchestrator/src/tests/workers/snos/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async fn test_snos_worker(#[case] db_val: bool) -> Result<(), Box<dyn Error>> {
let rpc_response_block_number = block;
let response = json!({ "id": 1,"jsonrpc":"2.0","result": rpc_response_block_number });
let config =
init_config(Some(format!("http://localhost:{}", server.port())), Some(db), Some(queue), Some(da_client)).await;
init_config(Some(format!("http://localhost:{}", server.port())), Some(db), Some(queue), Some(da_client), None).await;
config_force_init(config).await;

// mocking block call
Expand Down

0 comments on commit 8af2ecb

Please sign in to comment.