diff --git a/consensus/fork_choice/src/fork_choice.rs b/consensus/fork_choice/src/fork_choice.rs index 88a749b0a..5f4c9931f 100644 --- a/consensus/fork_choice/src/fork_choice.rs +++ b/consensus/fork_choice/src/fork_choice.rs @@ -402,7 +402,7 @@ where |()| ExecutionStatus::irrelevant(), |message| { let execution_payload = &message.body.execution_payload; - if execution_payload.is_default_with_zero_roots() { + if execution_payload == &<_>::default() { // A default payload does not have execution enabled. ExecutionStatus::irrelevant() } else {