From 90f758c7ca12cd3f2723eb886b0898f1055ba390 Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Fri, 13 Feb 2026 23:37:12 -0800 Subject: [PATCH 1/3] Comments --- beacon_node/client/src/notifier.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/beacon_node/client/src/notifier.rs b/beacon_node/client/src/notifier.rs index 3f01622c35..ba649f86ba 100644 --- a/beacon_node/client/src/notifier.rs +++ b/beacon_node/client/src/notifier.rs @@ -431,6 +431,12 @@ async fn bellatrix_readiness_logging( current_slot: Slot, beacon_chain: &BeaconChain, ) { + // There is no execution payload in gloas blocks, so this will trigger + // bellatrix readiness logging in gloas if we dont skip the check below + if beacon_chain.spec.fork_name_at_slot(current_slot).gloas_enabled { + return + } + let merge_completed = beacon_chain .canonical_head .cached_head() From f7d58ae89a07c321a9037fd9d1fb60a261f5ed88 Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Fri, 13 Feb 2026 23:37:34 -0800 Subject: [PATCH 2/3] Comments --- beacon_node/client/src/notifier.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/beacon_node/client/src/notifier.rs b/beacon_node/client/src/notifier.rs index ba649f86ba..453b9338ee 100644 --- a/beacon_node/client/src/notifier.rs +++ b/beacon_node/client/src/notifier.rs @@ -433,8 +433,12 @@ async fn bellatrix_readiness_logging( ) { // There is no execution payload in gloas blocks, so this will trigger // bellatrix readiness logging in gloas if we dont skip the check below - if beacon_chain.spec.fork_name_at_slot(current_slot).gloas_enabled { - return + if beacon_chain + .spec + .fork_name_at_slot(current_slot) + .gloas_enabled + { + return; } let merge_completed = beacon_chain From 9b7c21d697c07199cab9d6bd8cfe10bae119687e Mon Sep 17 00:00:00 2001 From: Eitan Seri- Levi Date: Fri, 13 Feb 2026 23:37:44 -0800 Subject: [PATCH 3/3] Comments --- beacon_node/client/src/notifier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/client/src/notifier.rs b/beacon_node/client/src/notifier.rs index 453b9338ee..0e2489b8f8 100644 --- a/beacon_node/client/src/notifier.rs +++ b/beacon_node/client/src/notifier.rs @@ -436,7 +436,7 @@ async fn bellatrix_readiness_logging( if beacon_chain .spec .fork_name_at_slot(current_slot) - .gloas_enabled + .gloas_enabled() { return; }