From f3cddc19f870ce6bc4c2feae81f92f78d5f684b8 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 10 Jun 2021 20:27:17 +0200 Subject: [PATCH] fix: remove ethers celo feature and ignore celo test (#313) --- ethers-providers/Cargo.toml | 2 +- ethers-providers/src/provider.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 8606c2a5..d1ee587d 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -49,6 +49,6 @@ tempfile = "3.2.0" [features] default = ["ws", "ipc"] -celo = ["ethers-core/celo", "ethers/celo"] +celo = ["ethers-core/celo"] ws = ["tokio", "tokio-tungstenite"] ipc = ["tokio", "tokio/io-util", "tokio-util", "bytes"] diff --git a/ethers-providers/src/provider.rs b/ethers-providers/src/provider.rs index 8aaa40a3..898eff0b 100644 --- a/ethers-providers/src/provider.rs +++ b/ethers-providers/src/provider.rs @@ -875,6 +875,7 @@ mod tests { } #[tokio::test] + #[cfg_attr(feature = "celo", ignore)] async fn test_is_signer() { use ethers_core::utils::Ganache; use std::str::FromStr;