primitives: rm redundant functions for Transaction (#11747)

This commit is contained in:
Thomas Coratger
2024-10-16 22:33:57 +02:00
committed by GitHub
parent b1cc16809b
commit 82862fabd7
19 changed files with 21 additions and 109 deletions

View File

@ -29,6 +29,7 @@ revm-primitives.workspace = true
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-sol-types.workspace = true
alloy-consensus.workspace = true
[dev-dependencies]
reth-testing-utils.workspace = true
@ -38,7 +39,6 @@ reth-primitives = { workspace = true, features = ["secp256k1"] }
secp256k1.workspace = true
serde_json.workspace = true
alloy-genesis.workspace = true
alloy-consensus.workspace = true
[features]
default = ["std"]

View File

@ -5,6 +5,7 @@ use crate::{
EthEvmConfig,
};
use alloc::{boxed::Box, sync::Arc, vec, vec::Vec};
use alloy_consensus::Transaction as _;
use alloy_primitives::{BlockNumber, U256};
use core::fmt::Display;
use reth_chainspec::{ChainSpec, EthereumHardforks, MAINNET};

View File

@ -5,6 +5,7 @@ use crate::{
EthEvmConfig,
};
use alloc::sync::Arc;
use alloy_consensus::Transaction as _;
use core::fmt::Display;
use reth_chainspec::{ChainSpec, EthereumHardfork, EthereumHardforks, MAINNET};
use reth_consensus::ConsensusError;