`active_validator_count >= GENESIS_ACTIVE_VALIDATOR_COUNT`: per Eth1 block
This commit is contained in:
parent
7bc6a46eaa
commit
7fdf59d012
|
@ -1186,7 +1186,7 @@ def is_genesis_trigger(deposits: List[Deposit, 2**DEPOSIT_CONTRACT_TREE_DEPTH],
|
||||||
active_validator_count += 1
|
active_validator_count += 1
|
||||||
|
|
||||||
# Check effective balance to trigger genesis
|
# Check effective balance to trigger genesis
|
||||||
return active_validator_count == GENESIS_ACTIVE_VALIDATOR_COUNT
|
return active_validator_count >= GENESIS_ACTIVE_VALIDATOR_COUNT
|
||||||
```
|
```
|
||||||
|
|
||||||
### Genesis state
|
### Genesis state
|
||||||
|
|
Loading…
Reference in New Issue