mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: --debug.skip-fcu (#7709)
This commit is contained in:
@ -41,7 +41,7 @@ impl OnForkChoiceUpdated {
|
||||
}
|
||||
|
||||
/// Creates a new instance of `OnForkChoiceUpdated` for the `SYNCING` state
|
||||
pub(crate) fn syncing() -> Self {
|
||||
pub fn syncing() -> Self {
|
||||
let status = PayloadStatus::from_status(PayloadStatusEnum::Syncing);
|
||||
Self {
|
||||
forkchoice_status: ForkchoiceStatus::from_payload_status(&status.status),
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
use crate::{
|
||||
engine::{
|
||||
forkchoice::{ForkchoiceStateHash, ForkchoiceStateTracker},
|
||||
message::OnForkChoiceUpdated,
|
||||
metrics::EngineMetrics,
|
||||
},
|
||||
hooks::{EngineHookContext, EngineHooksController},
|
||||
@ -51,7 +50,7 @@ use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||
use tracing::*;
|
||||
|
||||
mod message;
|
||||
pub use message::BeaconEngineMessage;
|
||||
pub use message::{BeaconEngineMessage, OnForkChoiceUpdated};
|
||||
|
||||
mod error;
|
||||
pub use error::{
|
||||
|
||||
Reference in New Issue
Block a user