mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 23:55:13 -05:00
@@ -1095,11 +1095,8 @@ def is_surround_vote(attestation_data_1: AttestationData,
|
||||
source_epoch_2 = attestation_data_2.justified_epoch
|
||||
target_epoch_1 = slot_to_epoch(attestation_data_1.slot)
|
||||
target_epoch_2 = slot_to_epoch(attestation_data_2.slot)
|
||||
return (
|
||||
(source_epoch_1 < source_epoch_2) and
|
||||
(source_epoch_2 + 1 == target_epoch_2) and
|
||||
(target_epoch_2 < target_epoch_1)
|
||||
)
|
||||
|
||||
return source_epoch_1 < source_epoch_2 and target_epoch_2 < target_epoch_1
|
||||
```
|
||||
|
||||
### `integer_squareroot`
|
||||
|
||||
Reference in New Issue
Block a user