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

chore: make CI green again #2650

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ethers-contract/src/multicall/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub mod constants;

if_providers! {
mod middleware;
pub use middleware::{Call, Multicall, MulticallContract, Result};
pub use middleware::{Call, Multicall, MulticallContract};

pub mod error;
}
Expand Down
4 changes: 1 addition & 3 deletions ethers-providers/src/rpc/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ use crate::{
use crate::{HttpRateLimitRetryPolicy, RetryClient};
use std::net::Ipv4Addr;

#[cfg(feature = "celo")]
pub use crate::CeloMiddleware;
pub use crate::Middleware;

use async_trait::async_trait;
Expand Down Expand Up @@ -1717,7 +1715,7 @@ mod tests {
}

#[tokio::test]
#[cfg_attr(feature = "celo", ignore)]
#[ignore]
async fn debug_trace_block() {
let provider = Provider::<Http>::try_from("https://eth.llamarpc.com").unwrap();

Expand Down
1 change: 0 additions & 1 deletion ethers-providers/src/stream/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
pub mod tx_stream;
pub use tx_stream::*;

pub mod watcher;
pub use watcher::*;
2 changes: 1 addition & 1 deletion ethers-signers/src/wallet/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod mnemonic;
pub use mnemonic::{MnemonicBuilder, MnemonicBuilderError};
pub use mnemonic::MnemonicBuilder;

mod private_key;
pub use private_key::WalletError;
Expand Down