From e9f986971ed1d990a3954ad576165ee909cd5837 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Mon, 17 Dec 2018 09:08:13 -0500 Subject: [PATCH] Update specs/core/0_beacon-chain.md Co-Authored-By: vbuterin --- 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 7718a906e..e2553e498 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -957,7 +957,7 @@ def get_attestation_participants(state: BeaconState, ```python def get_effective_balance(balance: int) -> int: """ - Returns the effective balance (also known as "balance at stake") for a ``validator`` with the given balance. + Returns the effective balance (also known as "balance at stake") for a ``validator`` with the given ``validator_index``. """ return min(balance, MAX_DEPOSIT * GWEI_PER_ETH) ```