Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Commit

Permalink
Apply PR feedback:
Browse files Browse the repository at this point in the history
update return type syntax in `get_winning_root_and_participants`
  • Loading branch information
NIC619 committed Mar 17, 2019
1 parent 2235a03 commit 173f751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth2/beacon/epoch_processing_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def get_winning_root_and_participants(
state: 'BeaconState',
shard: Shard,
effective_balances: Dict[ValidatorIndex, Gwei],
committee_config: CommitteeConfig) -> Tuple[Hash32, Sequence[ValidatorIndex]]:
committee_config: CommitteeConfig) -> Tuple[Hash32, Tuple[ValidatorIndex, ...]]:
valid_attestations = _filter_attestations_by_latest_crosslinks_and_shard(
state.current_epoch_attestations + state.previous_epoch_attestations,
state.latest_crosslinks[shard],
Expand Down

0 comments on commit 173f751

Please sign in to comment.