From 0681f8c08d77432e837592e5a16850783e194ece Mon Sep 17 00:00:00 2001 From: fradamt <104826920+fradamt@users.noreply.github.com> Date: Fri, 25 Oct 2024 08:34:37 +0200 Subject: [PATCH] missing : Co-authored-by: terence --- specs/_features/focil/fork-choice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/_features/focil/fork-choice.md b/specs/_features/focil/fork-choice.md index 8c85219a22..5044598eed 100644 --- a/specs/_features/focil/fork-choice.md +++ b/specs/_features/focil/fork-choice.md @@ -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