mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: move revm-inspectors to a separate repo (#5992)
This commit is contained in:
@ -26,7 +26,6 @@ reth-db = { workspace = true, features = ["mdbx", "test-utils"] }
|
||||
# TODO: Temporary use of the test-utils feature
|
||||
reth-provider = { workspace = true, features = ["test-utils"] }
|
||||
reth-revm.workspace = true
|
||||
reth-revm-inspectors.workspace = true
|
||||
reth-stages.workspace = true
|
||||
reth-interfaces = { workspace = true, features = ["test-utils", "clap"] }
|
||||
reth-transaction-pool.workspace = true
|
||||
@ -60,6 +59,7 @@ reth-nippy-jar.workspace = true
|
||||
# crypto
|
||||
alloy-rlp.workspace = true
|
||||
secp256k1 = { workspace = true, features = ["global-context", "rand-std", "recovery"] }
|
||||
revm-inspectors.workspace = true
|
||||
|
||||
# tracing
|
||||
tracing.workspace = true
|
||||
|
||||
@ -73,7 +73,6 @@ use reth_provider::{
|
||||
};
|
||||
use reth_prune::PrunerBuilder;
|
||||
use reth_revm::EvmProcessorFactory;
|
||||
use reth_revm_inspectors::stack::Hook;
|
||||
use reth_rpc_engine_api::EngineApi;
|
||||
use reth_stages::{
|
||||
prelude::*,
|
||||
@ -89,6 +88,7 @@ use reth_transaction_pool::{
|
||||
blobstore::InMemoryBlobStore, EthTransactionPool, TransactionPool,
|
||||
TransactionValidationTaskExecutor,
|
||||
};
|
||||
use revm_inspectors::stack::Hook;
|
||||
use secp256k1::SecretKey;
|
||||
use std::{
|
||||
net::{SocketAddr, SocketAddrV4},
|
||||
@ -862,7 +862,7 @@ impl NodeConfig {
|
||||
}
|
||||
|
||||
let (tip_tx, tip_rx) = watch::channel(B256::ZERO);
|
||||
use reth_revm_inspectors::stack::InspectorStackConfig;
|
||||
use revm_inspectors::stack::InspectorStackConfig;
|
||||
let factory = reth_revm::EvmProcessorFactory::new(self.chain.clone());
|
||||
|
||||
let stack_config = InspectorStackConfig {
|
||||
|
||||
Reference in New Issue
Block a user