chore: re-export http client error in providers transports (#570)

* chore: re-export http client error in providers transports

* chore: re-export we client error in providers transports
This commit is contained in:
James Prestwich 2021-11-10 08:53:07 -08:00 committed by GitHub
parent 16c5d33716
commit e9d40120a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,12 +24,12 @@ if_not_wasm! {
}
mod http;
pub use http::Provider as Http;
pub use http::{ClientError as HttpClientError, Provider as Http};
#[cfg(feature = "ws")]
mod ws;
#[cfg(feature = "ws")]
pub use ws::Ws;
pub use ws::{ClientError as WsClientError, Ws};
mod quorum;
pub(crate) use quorum::JsonRpcClientWrapper;