Skip to content

Commit

Permalink
missing :
Browse files Browse the repository at this point in the history
Co-authored-by: terence <terence@prysmaticlabs.com>
  • Loading branch information
fradamt and terencechain authored Oct 25, 2024
1 parent b181655 commit 0681f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/_features/focil/fork-choice.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def on_inclusion_list(

# Do not process inclusion lists from known equivocators
if validator_index not in inclusion_list_equivocators[(message.slot, root)]:
if validator_index in [il.validator_index for il in inclusion_lists[(message.slot, root)]]
if validator_index in [il.validator_index for il in inclusion_lists[(message.slot, root)]]:
il = [il for il in inclusion_lists[(message.slot, root)] if il.validator_index == validator_index][0]
if not il == message:
# We have equivocation evidence for `validator_index`, record it as equivocator
Expand Down

0 comments on commit 0681f8c

Please sign in to comment.