mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-02-02 22:54:54 -05:00
Loose condition of effective genesis deposit
This commit is contained in:
@@ -1157,7 +1157,7 @@ def is_genesis_trigger(deposits: List[Deposit], timestamp: uint64, deposit_root:
|
||||
# Count active validators at genesis
|
||||
active_validator_count = 0
|
||||
for validator in state.validators:
|
||||
if validator.effective_balance == MAX_EFFECTIVE_BALANCE:
|
||||
if validator.effective_balance >= MAX_EFFECTIVE_BALANCE:
|
||||
active_validator_count += 1
|
||||
|
||||
# Check effective balance to trigger genesis
|
||||
|
||||
Reference in New Issue
Block a user