primitives: rm alloy_consensus::transaction reexports (#11191)

This commit is contained in:
Thomas Coratger
2024-09-25 14:13:48 +02:00
committed by GitHub
parent 2224e6c48b
commit 2022dd3de5
42 changed files with 98 additions and 55 deletions

View File

@ -57,6 +57,7 @@ reth-provider = { workspace = true, features = ["test-utils"] }
reth-testing-utils.workspace = true
alloy-genesis.workspace = true
alloy-consensus.workspace = true
secp256k1.workspace = true
tempfile.workspace = true

View File

@ -1,5 +1,6 @@
use std::sync::Arc;
use alloy_consensus::TxEip2930;
use alloy_genesis::{Genesis, GenesisAccount};
use alloy_primitives::{b256, Address, TxKind, U256};
use eyre::OptionExt;
@ -10,7 +11,7 @@ use reth_evm::execute::{
use reth_evm_ethereum::execute::EthExecutorProvider;
use reth_primitives::{
constants::ETH_TO_WEI, Block, BlockBody, BlockWithSenders, Header, Receipt, Requests,
SealedBlockWithSenders, Transaction, TxEip2930,
SealedBlockWithSenders, Transaction,
};
use reth_provider::{
providers::ProviderNodeTypes, BlockWriter as _, ExecutionOutcome, LatestStateProviderRef,