From 87db56b93f4251039b412893cc0e2d4c855c872d Mon Sep 17 00:00:00 2001 From: nomaxg Date: Wed, 1 Nov 2023 17:51:48 -0400 Subject: [PATCH] remove dbgs --- sequencer/src/api.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sequencer/src/api.rs b/sequencer/src/api.rs index 5f24e9e3a9..5402dce4cf 100644 --- a/sequencer/src/api.rs +++ b/sequencer/src/api.rs @@ -133,7 +133,6 @@ impl Options { // the two cases differently. let (handle, node_index, update_task) = if let Some(query) = self.query { type StateType = Arc>>; - dbg!("attemtping to run query server"); let storage_path = Path::new(&query.storage_path); let query_state = { @@ -155,7 +154,6 @@ impl Options { }), ); } - dbg!("attemtping to run query server2"); let metrics: Box = query_state.metrics(); @@ -174,7 +172,6 @@ impl Options { query_state, blocks_by_time, })); - dbg!("attemtping to run query server3"); let mut app = App::<_, hotshot_query_service::Error>::with_state(state.clone()); @@ -195,7 +192,6 @@ impl Options { let status_api = status::define_api::>(&Default::default()) .map_err(|err| io::Error::new(io::ErrorKind::Other, err))?; - dbg!("attemtping to run query server4"); availability_api .get("getnamespaceproof", |req, state| { async move { @@ -331,11 +327,9 @@ impl Options { ) .0 }); - dbg!("attemtping to run query server6"); (handle, node_index, task) } else { - dbg!("not attemtping to run query server"); let (handle, node_index) = init_handle(Box::new(NoMetrics)).await; let mut app = App::<_, hotshot_query_service::Error>::with_state(RwLock::new(handle.clone()));