Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
chore: re-export http client error in providers transports (#570)
Browse files Browse the repository at this point in the history
* chore: re-export http client error in providers transports

* chore: re-export we client error in providers transports
  • Loading branch information
prestwich authored Nov 10, 2021
1 parent 16c5d33 commit e9d4012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethers-providers/src/transports/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e9d4012

Please sign in to comment.