Skip to content

Commit a0a2324

Browse files
committed
Fix lint
1 parent eb0cdc7 commit a0a2324

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

specs/electra/beacon-chain.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1442,7 +1442,8 @@ def initialize_beacon_state_from_eth1(eth1_block_hash: Hash32,
14421442
# Process activations
14431443
for index, validator in enumerate(state.validators):
14441444
balance = state.balances[index]
1445-
validator.effective_balance = min(balance - balance % EFFECTIVE_BALANCE_INCREMENT, MAX_EFFECTIVE_BALANCE_ELECTRA)
1445+
validator.effective_balance = min(
1446+
balance - balance % EFFECTIVE_BALANCE_INCREMENT, MAX_EFFECTIVE_BALANCE_ELECTRA)
14461447
if validator.effective_balance >= MIN_ACTIVATION_BALANCE:
14471448
validator.activation_eligibility_epoch = GENESIS_EPOCH
14481449
validator.activation_epoch = GENESIS_EPOCH

0 commit comments

Comments
 (0)