From 47b29c84564e442cf9394028080d39c256bf9914 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 21 Jun 2019 21:49:13 -0600 Subject: [PATCH] Loose condition of effective genesis deposit --- 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 c82f1e34f..1d2dead41 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -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