Skip to content

Commit

Permalink
fix: a couple bad imports/exports
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed Mar 1, 2023
1 parent 5525708 commit b1ff1e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ethers-providers/src/rpc/transports/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub use ws::{ConnectionDetails, WsClient as Ws, WsClientError};
#[cfg(feature = "legacy-ws")]
pub mod legacy_ws;
#[cfg(feature = "legacy-ws")]
pub use legacy_ws::Ws;
pub use legacy_ws::{ClientError as WsClientError, Ws};

mod mock;
pub use mock::{MockError, MockProvider};
1 change: 1 addition & 0 deletions ethers-signers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ serde_json = { version = "1.0.64" }
yubihsm = { version = "0.41.0", features = ["secp256k1", "usb", "mockhsm"] }
tokio = { version = "1.18", default-features = false, features = ["macros", "rt"] }
tempfile = "3.4.0"
tracing-subscriber = "0.3.16"

[features]
futures = ["futures-util", "futures-executor"]
Expand Down

0 comments on commit b1ff1e6

Please sign in to comment.