diff --git a/consensus/fork_choice/src/fork_choice.rs b/consensus/fork_choice/src/fork_choice.rs index c8d119a99..3341fc5c2 100644 --- a/consensus/fork_choice/src/fork_choice.rs +++ b/consensus/fork_choice/src/fork_choice.rs @@ -1332,15 +1332,6 @@ where return Ok(true); } - // If the justified block has execution enabled, then optimistically import any block. - if self - .get_justified_block()? - .execution_status - .is_execution_enabled() - { - return Ok(true); - } - // If the parent block has execution enabled, always import the block. // // See: