mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): rm reth-interfaces dep from reth-revm (#8387)
This commit is contained in:
3
Cargo.lock
generated
3
Cargo.lock
generated
@ -7662,9 +7662,10 @@ version = "0.2.0-beta.7"
|
||||
dependencies = [
|
||||
"alloy-eips 0.1.0 (git+https://github.com/alloy-rs/alloy?rev=64feb9b)",
|
||||
"reth-consensus-common",
|
||||
"reth-interfaces",
|
||||
"reth-execution-errors",
|
||||
"reth-primitives",
|
||||
"reth-provider",
|
||||
"reth-storage-errors",
|
||||
"reth-trie",
|
||||
"revm",
|
||||
"tracing",
|
||||
|
||||
@ -14,8 +14,9 @@ workspace = true
|
||||
[dependencies]
|
||||
# reth
|
||||
reth-primitives.workspace = true
|
||||
reth-interfaces.workspace = true
|
||||
reth-provider.workspace = true
|
||||
reth-storage-errors.workspace = true
|
||||
reth-execution-errors.workspace = true
|
||||
reth-consensus-common.workspace = true
|
||||
reth-trie = { workspace = true, optional = true }
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
//! Helper for handling execution of multiple blocks.
|
||||
|
||||
use crate::{precompile::Address, primitives::alloy_primitives::BlockNumber};
|
||||
use reth_interfaces::executor::BlockExecutionError;
|
||||
use reth_execution_errors::BlockExecutionError;
|
||||
use reth_primitives::{
|
||||
PruneMode, PruneModes, PruneSegmentError, Receipt, Receipts, MINIMUM_PRUNING_DISTANCE,
|
||||
};
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
use reth_primitives::{Address, B256, KECCAK_EMPTY, U256};
|
||||
use reth_provider::{ProviderError, StateProvider};
|
||||
use reth_provider::StateProvider;
|
||||
use reth_storage_errors::provider::ProviderError;
|
||||
use revm::{
|
||||
db::DatabaseRef,
|
||||
primitives::{AccountInfo, Bytecode},
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
use reth_consensus_common::calc;
|
||||
use reth_interfaces::executor::{BlockExecutionError, BlockValidationError};
|
||||
use reth_execution_errors::{BlockExecutionError, BlockValidationError};
|
||||
use reth_primitives::{
|
||||
revm::env::fill_tx_env_with_beacon_root_contract_call, Address, ChainSpec, Header, Withdrawal,
|
||||
B256, U256,
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
use reth_interfaces::provider::ProviderResult;
|
||||
use reth_primitives::{
|
||||
keccak256, trie::AccountProof, Account, Address, BlockNumber, Bytecode, Bytes, StorageKey,
|
||||
B256, U256,
|
||||
};
|
||||
use reth_provider::{AccountReader, BlockHashReader, StateProvider, StateRootProvider};
|
||||
use reth_storage_errors::provider::ProviderResult;
|
||||
use reth_trie::updates::TrieUpdates;
|
||||
use revm::db::BundleState;
|
||||
use std::collections::HashMap;
|
||||
|
||||
Reference in New Issue
Block a user