From 1bccf9ff027968ef7c88abe24af60425c555fc83 Mon Sep 17 00:00:00 2001 From: vbuterin Date: Sun, 13 Dec 2020 08:34:59 +0800 Subject: [PATCH] Update specs/phase1/beacon-chain.md Co-authored-by: dankrad --- specs/phase1/beacon-chain.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/specs/phase1/beacon-chain.md b/specs/phase1/beacon-chain.md index 8c3854e5f..ecf529d97 100644 --- a/specs/phase1/beacon-chain.md +++ b/specs/phase1/beacon-chain.md @@ -73,7 +73,8 @@ We define the following Python custom types for type hinting and readability: | `MAX_SHARDS` | `uint64(2**10)` (= 1024) | Theoretical max shard count (used to determine data structure sizes) | | `INITIAL_ACTIVE_SHARDS` | `uint64(2**6)` (= 64) | Initial shard count | | `GASPRICE_ADJUSTMENT_COEFFICIENT` | `uint64(2**3)` (= 2) | Gasprice may decrease/increase by at most exp(1 / this value) *per epoch* | -| `MAX_SHARD_HEADERS` | `MAX_SHARDS * 4` | | +| `MAX_SHARD_HEADERS_PER_SHARD` | `4` | | +| `MAX_SHARD_HEADERS` | `MAX_SHARDS * MAX_SHARD_HEADERS_PER_SHARD` | | ### Shard block configs