From 9e989e23adb440bc72faa585b28e5aa2667a0a0d Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 24 Jan 2024 15:42:40 -0700 Subject: [PATCH] remove timeout --- rpc-toolkit/src/cli.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rpc-toolkit/src/cli.rs b/rpc-toolkit/src/cli.rs index 4b3f2b1..cdf62d7 100644 --- a/rpc-toolkit/src/cli.rs +++ b/rpc-toolkit/src/cli.rs @@ -112,7 +112,6 @@ pub async fn call_remote_http( body = serde_json::to_vec(&rpc_req)?; } let res = req - .timeout(Duration::from_secs(30)) .header("content-length", body.len()) .body(body) .send()