mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-17 21:16:52 +00:00
_deltas
functions should return tuple instead of list
This commit is contained in:
parent
1845088249
commit
6a92267527
@ -1504,7 +1504,7 @@ def get_attestation_deltas(state: BeaconState) -> Tuple[List[Gwei], List[Gwei]]:
|
|||||||
if index not in matching_target_attesting_indices:
|
if index not in matching_target_attesting_indices:
|
||||||
penalties[index] += state.validator_registry[index].effective_balance * finality_delay // INACTIVITY_PENALTY_QUOTIENT
|
penalties[index] += state.validator_registry[index].effective_balance * finality_delay // INACTIVITY_PENALTY_QUOTIENT
|
||||||
|
|
||||||
return [rewards, penalties]
|
return rewards, penalties
|
||||||
```
|
```
|
||||||
|
|
||||||
```python
|
```python
|
||||||
@ -1523,7 +1523,7 @@ def get_crosslink_deltas(state: BeaconState) -> Tuple[List[Gwei], List[Gwei]]:
|
|||||||
rewards[index] += base_reward * attesting_balance // committee_balance
|
rewards[index] += base_reward * attesting_balance // committee_balance
|
||||||
else:
|
else:
|
||||||
penalties[index] += base_reward
|
penalties[index] += base_reward
|
||||||
return [rewards, penalties]
|
return rewards, penalties
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the following function:
|
Run the following function:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user