From 479a3c4f4d2bd69558ce2480760b26bf9888214d Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 24 Jan 2024 14:41:34 -0700 Subject: [PATCH] add debug info --- rpc-toolkit/src/cli.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpc-toolkit/src/cli.rs b/rpc-toolkit/src/cli.rs index fe59b82..d7652a4 100644 --- a/rpc-toolkit/src/cli.rs +++ b/rpc-toolkit/src/cli.rs @@ -110,11 +110,13 @@ pub async fn call_remote_http( req = req.header("accept", "application/json"); body = serde_json::to_vec(&req)?; } + dbg!(); let res = req .header("content-length", body.len()) .body(body) .send() .await?; + dbg!(); match res .headers()