diff --git a/crates/node/types/src/lib.rs b/crates/node/types/src/lib.rs index 6ab1c310451c..2da8180a9562 100644 --- a/crates/node/types/src/lib.rs +++ b/crates/node/types/src/lib.rs @@ -9,12 +9,10 @@ #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] #![cfg_attr(not(feature = "std"), no_std)] +use core::{fmt::Debug, marker::PhantomData}; pub use reth_primitives_traits::{ Block, BlockBody, FullBlock, FullNodePrimitives, FullReceipt, FullSignedTx, NodePrimitives, }; -use std::fmt::Debug; - -use core::marker::PhantomData; use reth_chainspec::EthChainSpec; use reth_db_api::{ diff --git a/crates/storage/provider/Cargo.toml b/crates/storage/provider/Cargo.toml index bb2c09245502..8ac413059cb6 100644 --- a/crates/storage/provider/Cargo.toml +++ b/crates/storage/provider/Cargo.toml @@ -123,6 +123,7 @@ test-utils = [ "reth-evm/test-utils", "reth-network-p2p/test-utils", "reth-primitives/test-utils", + "reth-primitives-traits/test-utils", "reth-codecs/test-utils", "reth-db-api/test-utils", "reth-trie-db/test-utils",