Revert "fix payload default check in fork choice"

This reverts commit e56fefbd05.
This commit is contained in:
realbigsean 2022-11-23 11:18:47 -05:00
parent e56fefbd05
commit 743347cf04
No known key found for this signature in database
GPG Key ID: B372B64D866BF8CC

View File

@ -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 {