From 848965ef06a7e2ee1966a1cdde1f99b9151b9d4a Mon Sep 17 00:00:00 2001 From: James Date: Mon, 30 Sep 2024 10:00:40 -0400 Subject: [PATCH] lint: allow dead --- crates/provider/src/ext/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/provider/src/ext/mod.rs b/crates/provider/src/ext/mod.rs index 7358fe0010e..6d7a3637e3a 100644 --- a/crates/provider/src/ext/mod.rs +++ b/crates/provider/src/ext/mod.rs @@ -47,6 +47,7 @@ pub use erc4337::Erc4337Api; #[cfg(test)] pub(crate) mod test { + #[allow(dead_code)] // dead only when all features off /// Run the given function only if we are in a CI environment. pub(crate) async fn async_ci_only(f: F) where