From 0eacabc2732a6532f8b54a834ff63078484825b1 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Tue, 5 Mar 2019 08:51:34 -0700 Subject: [PATCH] fix minor typo --- 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 36fbad847..ca37fa457 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -2294,7 +2294,7 @@ def get_crosslink_deltas(state: BeaconState) -> Tuple[List[Gwei], List[Gwei]]: for crosslink_committee, shard in get_crosslink_committees_at_slot(state, slot): winning_root, participants = get_winning_root_and_participants(state, shard) participating_balance = get_total_balance(state, participants) - total_balance = get_total_balance(state, crossling_committee) + total_balance = get_total_balance(state, crosslink_committee) for index in crosslink_committee: if index in participants: deltas[0][index] += get_base_reward(state, index) * participating_balance // total_balance