fix is_surround as per #410 (#523)

This commit is contained in:
Danny Ryan 2019-01-30 06:46:43 -08:00 committed by Justin
parent 16435b6ce2
commit 8040044f69
1 changed files with 2 additions and 5 deletions

View File

@ -1095,11 +1095,8 @@ def is_surround_vote(attestation_data_1: AttestationData,
source_epoch_2 = attestation_data_2.justified_epoch source_epoch_2 = attestation_data_2.justified_epoch
target_epoch_1 = slot_to_epoch(attestation_data_1.slot) target_epoch_1 = slot_to_epoch(attestation_data_1.slot)
target_epoch_2 = slot_to_epoch(attestation_data_2.slot) target_epoch_2 = slot_to_epoch(attestation_data_2.slot)
return (
(source_epoch_1 < source_epoch_2) and return source_epoch_1 < source_epoch_2 and target_epoch_2 < target_epoch_1
(source_epoch_2 + 1 == target_epoch_2) and
(target_epoch_2 < target_epoch_1)
)
``` ```
### `integer_squareroot` ### `integer_squareroot`