remove timeout

This commit is contained in:
Aiden McClelland
2024-01-24 15:42:40 -07:00
parent 6362a43100
commit 9e989e23ad

View File

@@ -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()