Skip to content

Commit 2234783

Browse files
authored
eip7805: make variable name more coherent (#4505)
1 parent 31b6da8 commit 2234783

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specs/_features/eip7805/fork-choice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ def get_proposer_head(store: Store, head_root: Root, slot: Slot) -> Root:
244244

245245
# [New in EIP7805]
246246
# Check that the head block is in the unsatisfied inclusion list blocks
247-
inclusion_list_not_satisfied = head_root in store.unsatisfied_inclusion_list_blocks
247+
inclusion_list_unsatisfied = head_root in store.unsatisfied_inclusion_list_blocks
248248

249-
if reorg_prerequisites and (head_late or inclusion_list_not_satisfied):
249+
if reorg_prerequisites and (head_late or inclusion_list_unsatisfied):
250250
return parent_root
251251
else:
252252
return head_root

0 commit comments

Comments
 (0)