From 3acead1d67ebba12946230b348705fc9fd62b194 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Fri, 30 Dec 2022 08:08:06 +0100 Subject: [PATCH] feat: improve crate resolution --- .../src/multicall/multicall_contract.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ethers-contract/src/multicall/multicall_contract.rs b/ethers-contract/src/multicall/multicall_contract.rs index 0b58455e..9ddd2b95 100644 --- a/ethers-contract/src/multicall/multicall_contract.rs +++ b/ethers-contract/src/multicall/multicall_contract.rs @@ -8,21 +8,6 @@ pub mod multicall_3 { // This is a hack to guarantee all ethers-derive macros can find the types. // See [`ethers_core::macros::determine_ethers_crates`]. #[doc(hidden)] - mod ethers { - pub mod contract { - pub use crate::*; - } - pub mod core { - pub use ethers_core::*; - } - pub mod providers { - pub use ethers_providers::*; - } - pub mod types { - pub use ethers_core::types::*; - } - } - #[doc(hidden)] mod ethers_contract { pub use crate::*; }