Merge pull request #1810 from terencechain/patch-97
Make obvious that `source_epoch` does not underflow
This commit is contained in:
commit
7daa6c0039
|
@ -476,7 +476,7 @@ def get_online_validator_indices(state: BeaconState) -> Set[ValidatorIndex]:
|
||||||
```python
|
```python
|
||||||
def get_shard_committee(beacon_state: BeaconState, epoch: Epoch, shard: Shard) -> Sequence[ValidatorIndex]:
|
def get_shard_committee(beacon_state: BeaconState, epoch: Epoch, shard: Shard) -> Sequence[ValidatorIndex]:
|
||||||
source_epoch = epoch - epoch % SHARD_COMMITTEE_PERIOD
|
source_epoch = epoch - epoch % SHARD_COMMITTEE_PERIOD
|
||||||
if source_epoch > 0:
|
if source_epoch >= SHARD_COMMITTEE_PERIOD:
|
||||||
source_epoch -= SHARD_COMMITTEE_PERIOD
|
source_epoch -= SHARD_COMMITTEE_PERIOD
|
||||||
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
|
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
|
||||||
seed = get_seed(beacon_state, source_epoch, DOMAIN_SHARD_COMMITTEE)
|
seed = get_seed(beacon_state, source_epoch, DOMAIN_SHARD_COMMITTEE)
|
||||||
|
@ -494,7 +494,7 @@ def get_shard_committee(beacon_state: BeaconState, epoch: Epoch, shard: Shard) -
|
||||||
```python
|
```python
|
||||||
def get_light_client_committee(beacon_state: BeaconState, epoch: Epoch) -> Sequence[ValidatorIndex]:
|
def get_light_client_committee(beacon_state: BeaconState, epoch: Epoch) -> Sequence[ValidatorIndex]:
|
||||||
source_epoch = epoch - epoch % LIGHT_CLIENT_COMMITTEE_PERIOD
|
source_epoch = epoch - epoch % LIGHT_CLIENT_COMMITTEE_PERIOD
|
||||||
if source_epoch > 0:
|
if source_epoch >= LIGHT_CLIENT_COMMITTEE_PERIOD:
|
||||||
source_epoch -= LIGHT_CLIENT_COMMITTEE_PERIOD
|
source_epoch -= LIGHT_CLIENT_COMMITTEE_PERIOD
|
||||||
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
|
active_validator_indices = get_active_validator_indices(beacon_state, source_epoch)
|
||||||
seed = get_seed(beacon_state, source_epoch, DOMAIN_LIGHT_CLIENT)
|
seed = get_seed(beacon_state, source_epoch, DOMAIN_LIGHT_CLIENT)
|
||||||
|
|
Loading…
Reference in New Issue