Skip to content

Commit 80b94ba

Browse files
authored
Fix bad suggestion
1 parent 06ead3a commit 80b94ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/_features/eip7594/fork-choice.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def get_head(store: Store) -> Root:
5151
# Get available children for the current slot
5252
children = [
5353
root for (root, block) in blocks.items()
54-
if block.parent_root == head and is_data_available(root):
54+
if block.parent_root == head and is_data_available(root)
5555
]
5656
if len(children) == 0:
5757
return head

0 commit comments

Comments
 (0)