fix: ambiguous_glob_reexports rustc lint

This commit is contained in:
DaniPopes 2023-03-25 03:12:02 +01:00
parent 36dac5864c
commit 04d4e32b9a
No known key found for this signature in database
GPG Key ID: 0F09640DDB7AC692
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ pub mod contract;
pub mod errors;
pub mod gas;
pub mod source_tree;
pub mod transaction;
mod transaction;
pub mod utils;
pub mod verify;

View File

@ -106,8 +106,9 @@ pub use ethers_core::{abi, types, utils};
/// Easy imports of frequently used type definitions and traits.
#[doc(hidden)]
#[allow(ambiguous_glob_reexports)]
pub mod prelude {
pub use super::addressbook::*;
pub use super::addressbook::contract;
pub use super::contract::*;