From 6c1abbc2fc8cfa3a74f6b69ff5dbaa65cdbc878e Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 1 Mar 2019 19:12:11 -0600 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 2b6c3bd07..bf65b66c1 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1782,7 +1782,7 @@ def get_current_attestations(state: BeaconState) -> List[PendingAttestation]: ``` ```python -def get_current_total_balance(state: BeaconState): +def get_current_total_balance(state: BeaconState) -> Gwei: return get_total_balance(state, get_active_validator_indices(state.validator_registry, current_epoch)) ```