From d3cdd3fcc0c55dcff8b0d0c53bb1e0edd46f02b0 Mon Sep 17 00:00:00 2001 From: Chih Cheng Liang Date: Thu, 20 Dec 2018 19:36:35 +0800 Subject: [PATCH] Fix typo in get_new_shuffling --- 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 d06645df0..4a41e3160 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -872,7 +872,7 @@ def get_new_shuffling(seed: Hash32, ) for shard_position, indices in enumerate(shard_indices) ] - output.append(shards_and_committees_for_slot) + output.append(shard_committees) return output ```