From ea2f577a8dbd83baa9f32d1e342d84c43c13073f Mon Sep 17 00:00:00 2001 From: Dean Eigenmann Date: Tue, 2 Jul 2019 05:31:49 +0200 Subject: [PATCH 1/2] Update 0_beacon-chain.md --- 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 975874d51..76f199e39 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -389,7 +389,7 @@ class DepositData(Container): ```python class CompactCommittee(Container): - pubkeys: List[Bytes48, MAX_VALIDATORS_PER_COMMITTEE] + pubkeys: List[BLSPubKey, MAX_VALIDATORS_PER_COMMITTEE] compact_validators: List[uint64, MAX_VALIDATORS_PER_COMMITTEE] ``` From f8fa6f00461cd874d854952087459d2ed6b9fc69 Mon Sep 17 00:00:00 2001 From: Dean Eigenmann Date: Tue, 2 Jul 2019 05:43:17 +0200 Subject: [PATCH 2/2] Update 0_beacon-chain.md --- 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 76f199e39..c9c2531ea 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -389,7 +389,7 @@ class DepositData(Container): ```python class CompactCommittee(Container): - pubkeys: List[BLSPubKey, MAX_VALIDATORS_PER_COMMITTEE] + pubkeys: List[BLSPubkey, MAX_VALIDATORS_PER_COMMITTEE] compact_validators: List[uint64, MAX_VALIDATORS_PER_COMMITTEE] ```