Some more TODOs

This commit is contained in:
Eitan Seri- Levi
2026-02-24 12:14:30 -08:00
parent 2093dc1f39
commit 876e6899cd
3 changed files with 5 additions and 1 deletions

View File

@@ -44,6 +44,8 @@ impl<T: BeaconChainTypes> IntoExecutionPendingEnvelope<T> for GossipVerifiedEnve
let envelope = &signed_envelope.message;
let payload = &envelope.payload;
// TODO(gloas)
// Verify the execution payload is valid
let payload_notifier = PayloadNotifier::new(
chain.clone(),

View File

@@ -29,6 +29,7 @@ impl<T: BeaconChainTypes> PayloadNotifier<T> {
let payload_verification_status = {
let payload_message = &envelope.message;
// TODO(gloas) re-asses if optimistic syncing works similarly post-gloas
match notify_execution_layer {
NotifyExecutionLayer::No if chain.config.optimistic_finalized_sync => {
let new_payload_request = Self::build_new_payload_request(&envelope, &block)?;