primitives: rm more alloy_primitives reexports (#11250)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Thomas Coratger
2024-09-26 18:18:56 +02:00
committed by GitHub
parent 2e05ec008a
commit ad64de8962
19 changed files with 39 additions and 43 deletions

View File

@ -209,8 +209,8 @@ where
#[cfg(test)]
mod tests {
use super::*;
use alloy_primitives::hex_literal::hex;
use reth_db_api::{cursor::DbCursorRW, transaction::DbTxMut};
use reth_primitives::hex_literal::hex;
use reth_provider::test_utils::create_test_provider_factory;
#[test]

View File

@ -1,6 +1,6 @@
#![allow(missing_docs)]
use alloy_primitives::{keccak256, Address, B256, U256};
use alloy_primitives::{hex_literal::hex, keccak256, Address, B256, U256};
use proptest::{prelude::ProptestConfig, proptest};
use proptest_arbitrary_interop::arb;
use reth_db::{tables, test_utils::TempDatabase, DatabaseEnv};
@ -8,7 +8,7 @@ use reth_db_api::{
cursor::{DbCursorRO, DbCursorRW, DbDupCursorRO},
transaction::DbTxMut,
};
use reth_primitives::{constants::EMPTY_ROOT_HASH, hex_literal::hex, Account, StorageEntry};
use reth_primitives::{constants::EMPTY_ROOT_HASH, Account, StorageEntry};
use reth_provider::{
test_utils::create_test_provider_factory, DatabaseProviderRW, StorageTrieWriter, TrieWriter,
};