mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Replace reth-provider dep in reth-rpc-eth-types (#11077)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -8580,7 +8580,6 @@ dependencies = [
|
||||
"reth-execution-types",
|
||||
"reth-metrics",
|
||||
"reth-primitives",
|
||||
"reth-provider",
|
||||
"reth-revm",
|
||||
"reth-rpc-server-types",
|
||||
"reth-rpc-types",
|
||||
|
||||
@ -27,7 +27,6 @@ reth-rpc-types-compat.workspace = true
|
||||
reth-tasks.workspace = true
|
||||
reth-transaction-pool.workspace = true
|
||||
reth-trie.workspace = true
|
||||
reth-provider.workspace = true
|
||||
|
||||
# ethereum
|
||||
alloy-primitives.workspace = true
|
||||
|
||||
@ -2,7 +2,9 @@
|
||||
|
||||
use std::marker::PhantomData;
|
||||
|
||||
use reth_provider::{BlockReaderIdExt, CanonStateSubscriptions, ChainSpecProvider};
|
||||
use reth_chain_state::CanonStateSubscriptions;
|
||||
use reth_chainspec::ChainSpecProvider;
|
||||
use reth_storage_api::BlockReaderIdExt;
|
||||
use reth_tasks::TaskSpawner;
|
||||
|
||||
use crate::{
|
||||
|
||||
Reference in New Issue
Block a user