remove duplicate sharding config var, fix minimal-sharding-config fork epoch name
This commit is contained in:
parent
3209967514
commit
fcf37895ba
|
@ -34,11 +34,6 @@ MAX_GASPRICE: 8589934592
|
||||||
# 2**3 (= 8) Gwei
|
# 2**3 (= 8) Gwei
|
||||||
MIN_GASPRICE: 8
|
MIN_GASPRICE: 8
|
||||||
|
|
||||||
# Time parameters
|
|
||||||
# ---------------------------------------------------------------
|
|
||||||
# 2**8 (= 256) | epochs
|
|
||||||
SHARD_COMMITTEE_PERIOD: 256
|
|
||||||
|
|
||||||
# Signature domains
|
# Signature domains
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
DOMAIN_SHARD_PROPOSER: 0x80000000
|
DOMAIN_SHARD_PROPOSER: 0x80000000
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
SHARDING_FORK_VERSION: 0x03000001
|
SHARDING_FORK_VERSION: 0x03000001
|
||||||
# TBD, temporarily max uint64 value: 2**64 - 1
|
# TBD, temporarily max uint64 value: 2**64 - 1
|
||||||
MERGE_FORK_EPOCH: 18446744073709551615
|
SHARDING_FORK_EPOCH: 18446744073709551615
|
||||||
|
|
||||||
|
|
||||||
# Beacon-chain
|
# Beacon-chain
|
||||||
|
@ -34,11 +34,6 @@ MAX_GASPRICE: 8589934592
|
||||||
# 2**3 (= 8) Gwei
|
# 2**3 (= 8) Gwei
|
||||||
MIN_GASPRICE: 8
|
MIN_GASPRICE: 8
|
||||||
|
|
||||||
# Time parameters
|
|
||||||
# ---------------------------------------------------------------
|
|
||||||
# 2**8 (= 256) | epochs
|
|
||||||
SHARD_COMMITTEE_PERIOD: 256
|
|
||||||
|
|
||||||
# Signature domains
|
# Signature domains
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
DOMAIN_SHARD_PROPOSER: 0x80000000
|
DOMAIN_SHARD_PROPOSER: 0x80000000
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
- [Shard block configs](#shard-block-configs)
|
- [Shard block configs](#shard-block-configs)
|
||||||
- [Precomputed size verification points](#precomputed-size-verification-points)
|
- [Precomputed size verification points](#precomputed-size-verification-points)
|
||||||
- [Gwei values](#gwei-values)
|
- [Gwei values](#gwei-values)
|
||||||
- [Time parameters](#time-parameters)
|
|
||||||
- [Domain types](#domain-types)
|
- [Domain types](#domain-types)
|
||||||
- [Updated containers](#updated-containers)
|
- [Updated containers](#updated-containers)
|
||||||
- [`AttestationData`](#attestationdata)
|
- [`AttestationData`](#attestationdata)
|
||||||
|
@ -123,12 +122,6 @@ The following values are (non-configurable) constants used throughout the specif
|
||||||
| `MAX_GASPRICE` | `Gwei(2**33)` (= 8,589,934,592) | Gwei | Max gasprice charged for a TARGET-sized shard block |
|
| `MAX_GASPRICE` | `Gwei(2**33)` (= 8,589,934,592) | Gwei | Max gasprice charged for a TARGET-sized shard block |
|
||||||
| `MIN_GASPRICE` | `Gwei(2**3)` (= 8) | Gwei | Min gasprice charged for a TARGET-sized shard block |
|
| `MIN_GASPRICE` | `Gwei(2**3)` (= 8) | Gwei | Min gasprice charged for a TARGET-sized shard block |
|
||||||
|
|
||||||
### Time parameters
|
|
||||||
|
|
||||||
| Name | Value | Unit | Duration |
|
|
||||||
| - | - | :-: | :-: |
|
|
||||||
| `SHARD_COMMITTEE_PERIOD` | `Epoch(2**8)` (= 256) | epochs | ~27 hours |
|
|
||||||
|
|
||||||
### Domain types
|
### Domain types
|
||||||
|
|
||||||
| Name | Value |
|
| Name | Value |
|
||||||
|
|
Loading…
Reference in New Issue