From 6362a431003299d3c760f9909ca72316adcb6866 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 24 Jan 2024 15:37:49 -0700 Subject: [PATCH] remove debugging --- rpc-toolkit/src/cli.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rpc-toolkit/src/cli.rs b/rpc-toolkit/src/cli.rs index 9948240..4b3f2b1 100644 --- a/rpc-toolkit/src/cli.rs +++ b/rpc-toolkit/src/cli.rs @@ -111,13 +111,12 @@ pub async fn call_remote_http( req = req.header("accept", "application/json"); body = serde_json::to_vec(&rpc_req)?; } - let res = dbg!(req) + let res = req .timeout(Duration::from_secs(30)) .header("content-length", body.len()) .body(body) .send() .await?; - dbg!(); match res .headers()