mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore: remove reth-rpc-types dep in node-events (#8854)
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -7507,6 +7507,7 @@ dependencies = [
|
||||
name = "reth-node-events"
|
||||
version = "1.0.0-rc.1"
|
||||
dependencies = [
|
||||
"alloy-rpc-types-engine",
|
||||
"futures",
|
||||
"humantime",
|
||||
"pin-project",
|
||||
@@ -7517,7 +7518,6 @@ dependencies = [
|
||||
"reth-primitives",
|
||||
"reth-provider",
|
||||
"reth-prune",
|
||||
"reth-rpc-types",
|
||||
"reth-stages",
|
||||
"reth-static-file",
|
||||
"tokio",
|
||||
|
||||
@@ -20,7 +20,9 @@ reth-prune.workspace = true
|
||||
reth-static-file.workspace = true
|
||||
reth-db-api.workspace = true
|
||||
reth-primitives.workspace = true
|
||||
reth-rpc-types.workspace = true
|
||||
|
||||
# alloy
|
||||
alloy-rpc-types-engine.workspace = true
|
||||
|
||||
# async
|
||||
tokio.workspace = true
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
//! Support for handling events emitted by node components.
|
||||
|
||||
use crate::cl::ConsensusLayerHealthEvent;
|
||||
use alloy_rpc_types_engine::ForkchoiceState;
|
||||
use futures::Stream;
|
||||
use reth_beacon_consensus::{
|
||||
BeaconConsensusEngineEvent, ConsensusEngineLiveSyncProgress, ForkchoiceStatus,
|
||||
@@ -10,7 +11,6 @@ use reth_network::{NetworkEvent, NetworkHandle};
|
||||
use reth_network_api::PeersInfo;
|
||||
use reth_primitives::{constants, BlockNumber, B256};
|
||||
use reth_prune::PrunerEvent;
|
||||
use reth_rpc_types::engine::ForkchoiceState;
|
||||
use reth_stages::{EntitiesCheckpoint, ExecOutput, PipelineEvent, StageCheckpoint, StageId};
|
||||
use reth_static_file::StaticFileProducerEvent;
|
||||
use std::{
|
||||
|
||||
Reference in New Issue
Block a user