Skip to content

Commit

Permalink
f remove dbgs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbesraa committed Aug 6, 2024
1 parent 2080373 commit 56c26c0
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion roles/jd-server/src/lib/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ pub async fn start_jd_server(config: Configuration) {
// TODO if the jd-server is launched with core_rpc_url empty, the following flow is never
// taken. Consequentally new_block_receiver in JDsMempool::on_submit is never read, possibly
// reaching the channel bound. The new_block_sender is given as input to JobDeclarator::start()
dbg!(&url);
if url.contains("http") {
let sender_update_mempool = sender.clone();
task::spawn(async move {
Expand Down
2 changes: 0 additions & 2 deletions roles/pool/src/lib/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ impl PoolSv2 {
status::Sender::DownstreamListener(status_tx),
);

dbg!("before spawining in pool start");

// Start the error handling loop
// See `./status.rs` and `utils/error_handling` for information on how this operates
tokio::spawn(async move {
Expand Down
1 change: 0 additions & 1 deletion roles/roles-utils/rpc/src/mini_rpc_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ impl MiniRpcClient {

pub async fn health(&self) -> Result<(), RpcError> {
let response = self.send_json_rpc_request("getblockchaininfo", json!([])).await;
dbg!(&response);
match response {
Ok(_) => Ok(()),
Err(error) => Err(error),
Expand Down

0 comments on commit 56c26c0

Please sign in to comment.