Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions specs/gloas/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -788,9 +788,6 @@ def get_proposer_head(store: Store, head_node: ForkChoiceNode, slot: Slot) -> Fo
# Only re-org the head block if it arrived later than the attestation deadline.
head_late = is_head_late(store, head_node.root)

# Do not re-org on an epoch boundary.
not_epoch_boundary = is_not_epoch_boundary(slot)

# Ensure that the FFG information of the new head will be competitive with the current head.
ffg_competitive = is_ffg_competitive(store, head_node.root, parent_root)

Expand All @@ -817,7 +814,6 @@ def get_proposer_head(store: Store, head_node: ForkChoiceNode, slot: Slot) -> Fo

if all([
head_late,
not_epoch_boundary,
ffg_competitive,
finalization_ok,
proposing_on_time,
Expand Down
Loading