This commit is contained in:
Dankrad Feist 2020-05-01 00:32:02 +01:00
parent b82496fd11
commit 964bf42335
No known key found for this signature in database
GPG Key ID: 6815E6A20BEBBABA
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ def process_chunk_challenge_response(state: BeaconState,
records[records.index(challenge)] = CustodyChunkChallengeRecord()
# Reward the proposer
proposer_index = get_beacon_proposer_index(state)
increase_balance(state, proposer_index, get_base_reward(state, proposer_index) // MINOR_REWARD_QUOTIENT)
increase_balance(state, proposer_index, Gwei(get_base_reward(state, proposer_index) // MINOR_REWARD_QUOTIENT))
```
#### Custody key reveals