*Add impl From<()> for HttpClientError

This commit is contained in:
Derrick Hammer 2023-03-26 14:10:21 -04:00
parent a103982ff0
commit c831bd5c35
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 9 additions and 0 deletions

View File

@ -91,6 +91,15 @@ impl From<Result<String, ()>> for ClientError {
}
}
}
impl From<()> for HttpClientError {
fn from(_: ()) -> Self {
HttpClientError::JsonRpcError(JsonRpcError {
code: 0,
message: "".to_string(),
data: None,
})
}
}
#[cfg_attr(target_arch = "wasm32", async_trait(?Send))]
#[cfg_attr(not(target_arch = "wasm32"), async_trait)]