Update 0_beacon-chain.md

This commit is contained in:
Justin 2019-04-22 16:17:14 +10:00 committed by GitHub
parent c123fb1b97
commit 6903f2eec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1965,7 +1965,7 @@ def process_deposit(state: BeaconState, deposit: Deposit) -> None:
activation_epoch=FAR_FUTURE_EPOCH,
exit_epoch=FAR_FUTURE_EPOCH,
withdrawable_epoch=FAR_FUTURE_EPOCH,
effective_balance=amount - amount % EFFECTIVE_BALANCE_INCREMENT
effective_balance=amount - amount % EFFECTIVE_BALANCE_INCREMENT,
))
state.balances.append(amount)
else: