From e0b8eea7d6c27512dea0e67120f2badc8eec5257 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Fri, 1 Mar 2019 19:12:31 -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 09f8b7280..ab4866bba 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1793,7 +1793,7 @@ def get_previous_total_balance(state: BeaconState) -> Gwei: ```python def get_previous_attestations(state: BeaconState) -> List[PendingAttestation]: - return [a for a in state.latest_attestations if previous_epoch == slot_to_epoch(a.data.slot)] + return [a for a in state.latest_attestations if previous_epoch == slot_to_epoch(a.data.slot)] ``` ```python