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

Commit

Permalink
fix: Export ethers_providers::IpcError and `ethers_providers::Quoru…
Browse files Browse the repository at this point in the history
…mError` (#1012)
  • Loading branch information
oblique authored Mar 13, 2022
1 parent 77c3b39 commit 367f344
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@

## ethers-providers

### Unreleased

- Add support for basic and bearer authentication in http and non-wasm websockets.
[829](https://github.com/gakonst/ethers-rs/pull/829)
- Export `ethers_providers::IpcError` and `ethers_providers::QuorumError`
[1012](https://github.com/gakonst/ethers-rs/pull/1012)

### 0.6.0

- re-export error types for `Http` and `Ws` providers in
Expand All @@ -144,11 +151,6 @@
- Add support for `evm_snapshot` and `evm_revert` dev RPC methods.
[640](https://github.com/gakonst/ethers-rs/pull/640)

### Unreleased

- Add support for basic and bearer authentication in http and non-wasm websockets.
[829](https://github.com/gakonst/ethers-rs/pull/829)

### 0.5.3

- Expose `ens` module [#435](https://github.com/gakonst/ethers-rs/pull/435)
Expand Down
4 changes: 2 additions & 2 deletions ethers-providers/src/transports/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ macro_rules! if_not_wasm {
#[cfg(all(target_family = "unix", feature = "ipc"))]
mod ipc;
#[cfg(all(target_family = "unix", feature = "ipc"))]
pub use ipc::Ipc;
pub use ipc::{Ipc, IpcError};

mod http;
pub use self::http::{ClientError as HttpClientError, Provider as Http};
Expand All @@ -34,7 +34,7 @@ pub use ws::{ClientError as WsClientError, Ws};

mod quorum;
pub(crate) use quorum::JsonRpcClientWrapper;
pub use quorum::{Quorum, QuorumProvider, WeightedProvider};
pub use quorum::{Quorum, QuorumError, QuorumProvider, WeightedProvider};

mod mock;
pub use mock::{MockError, MockProvider};

0 comments on commit 367f344

Please sign in to comment.