Indent fix

This commit is contained in:
vbuterin 2018-11-27 13:08:09 -05:00 committed by GitHub
parent 9a20ecb9e4
commit 4d3f388d28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -761,14 +761,14 @@ def add_validator(state: State,
sig=proof_of_possession,
domain=get_domain(state, current_slot, DOMAIN_DEPOSIT))
rec = ValidatorRecord(
pubkey=pubkey,
withdrawal_credentials=withdrawal_credentials,
randao_commitment=randao_commitment,
randao_skips=0,
balance=DEPOSIT_SIZE * GWEI_PER_ETH,
status=status,
last_status_change_slot=current_slot,
exit_seq=0
pubkey=pubkey,
withdrawal_credentials=withdrawal_credentials,
randao_commitment=randao_commitment,
randao_skips=0,
balance=DEPOSIT_SIZE * GWEI_PER_ETH,
status=status,
last_status_change_slot=current_slot,
exit_seq=0
)
# Pubkey uniqueness
validator_pubkeys = [v.pubkey for v in state.validators]