From 7fdf59d012065e59c4d9e771ce03a9d10cf85530 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Sat, 29 Jun 2019 18:09:05 +0800 Subject: [PATCH] `active_validator_count >= GENESIS_ACTIVE_VALIDATOR_COUNT`: per Eth1 block --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 9e59212fd..7cd5725b1 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -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