unstable merge

This commit is contained in:
hopinheimer
2026-03-17 02:44:31 -04:00
9 changed files with 172 additions and 62 deletions

View File

@@ -2104,9 +2104,7 @@ pub fn serve<T: BeaconChainTypes>(
let execution_status_string = node
.execution_status()
.ok()
.map(|status| status.to_string())
.unwrap_or_else(|| "n/a".to_string());
.map_or_else(|_| "irrelevant".to_string(), |s| s.to_string());
ForkChoiceNode {
slot: node.slot(),