`active_validator_count >= GENESIS_ACTIVE_VALIDATOR_COUNT`: per Eth1 block

This commit is contained in:
Hsiao-Wei Wang 2019-06-29 18:09:05 +08:00
parent 7bc6a46eaa
commit 7fdf59d012
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 1 additions and 1 deletions

View File

@ -1186,7 +1186,7 @@ def is_genesis_trigger(deposits: List[Deposit, 2**DEPOSIT_CONTRACT_TREE_DEPTH],
active_validator_count += 1
# Check effective balance to trigger genesis
return active_validator_count == GENESIS_ACTIVE_VALIDATOR_COUNT
return active_validator_count >= GENESIS_ACTIVE_VALIDATOR_COUNT
```
### Genesis state