mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: send CanonStateNotifications from execution stage (#7578)
This commit is contained in:
@ -15,7 +15,7 @@ workspace = true
|
||||
reth-beacon-consensus-core.workspace = true
|
||||
reth-primitives.workspace = true
|
||||
reth-interfaces.workspace = true
|
||||
reth-stages.workspace = true
|
||||
reth-stages-api.workspace = true
|
||||
reth-db.workspace = true
|
||||
reth-provider.workspace = true
|
||||
reth-rpc-types.workspace = true
|
||||
@ -65,5 +65,5 @@ optimism = [
|
||||
"reth-interfaces/optimism",
|
||||
"reth-provider/optimism",
|
||||
"reth-blockchain-tree/optimism",
|
||||
"reth-beacon-consensus-core/optimism"
|
||||
"reth-beacon-consensus-core/optimism",
|
||||
]
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
use crate::engine::hooks::EngineHookError;
|
||||
use reth_interfaces::RethError;
|
||||
use reth_rpc_types::engine::ForkchoiceUpdateError;
|
||||
use reth_stages::PipelineError;
|
||||
use reth_stages_api::PipelineError;
|
||||
|
||||
/// Beacon engine result.
|
||||
pub type BeaconEngineResult<Ok> = Result<Ok, BeaconConsensusEngineError>;
|
||||
|
||||
@ -33,7 +33,7 @@ use reth_provider::{
|
||||
use reth_rpc_types::engine::{
|
||||
CancunPayloadFields, ExecutionPayload, PayloadStatus, PayloadStatusEnum, PayloadValidationError,
|
||||
};
|
||||
use reth_stages::{ControlFlow, Pipeline};
|
||||
use reth_stages_api::{ControlFlow, Pipeline};
|
||||
use reth_tasks::TaskSpawner;
|
||||
use reth_tokio_util::EventListeners;
|
||||
use std::{
|
||||
|
||||
@ -12,7 +12,7 @@ use reth_interfaces::p2p::{
|
||||
headers::client::HeadersClient,
|
||||
};
|
||||
use reth_primitives::{BlockNumber, ChainSpec, SealedBlock, B256};
|
||||
use reth_stages::{ControlFlow, Pipeline, PipelineError, PipelineWithResult};
|
||||
use reth_stages_api::{ControlFlow, Pipeline, PipelineError, PipelineWithResult};
|
||||
use reth_tasks::TaskSpawner;
|
||||
use reth_tokio_util::EventListeners;
|
||||
use std::{
|
||||
|
||||
Reference in New Issue
Block a user