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:
parent
16c5d33716
commit
e9d40120a7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue