Adjust sync committee size and duration

This commit is contained in:
Alex Stokes 2021-05-01 16:30:23 -07:00
parent 2af585b333
commit 68d6e4319a
No known key found for this signature in database
GPG Key ID: 99B3D88FD6C55A69
2 changed files with 6 additions and 6 deletions

View File

@ -12,8 +12,8 @@ PROPORTIONAL_SLASHING_MULTIPLIER_ALTAIR: 2
# Misc # Misc
# --------------------------------------------------------------- # ---------------------------------------------------------------
# 2**10 (= 1,024) # 2**9 (= 512)
SYNC_COMMITTEE_SIZE: 1024 SYNC_COMMITTEE_SIZE: 512
# 2**6 (= 64) # 2**6 (= 64)
SYNC_PUBKEYS_PER_AGGREGATE: 64 SYNC_PUBKEYS_PER_AGGREGATE: 64
# 2**2 (= 4) # 2**2 (= 4)
@ -22,8 +22,8 @@ INACTIVITY_SCORE_BIAS: 4
# Time parameters # Time parameters
# --------------------------------------------------------------- # ---------------------------------------------------------------
# 2**8 (= 256) # 2**9 (= 512)
EPOCHS_PER_SYNC_COMMITTEE_PERIOD: 256 EPOCHS_PER_SYNC_COMMITTEE_PERIOD: 512
# Signature domains # Signature domains

View File

@ -118,7 +118,7 @@ This patch updates a few configuration values to move penalty parameters toward
| Name | Value | | Name | Value |
| - | - | | - | - |
| `SYNC_COMMITTEE_SIZE` | `uint64(2**10)` (= 1,024) | | `SYNC_COMMITTEE_SIZE` | `uint64(2**9)` (= 512) |
| `SYNC_PUBKEYS_PER_AGGREGATE` | `uint64(2**6)` (= 64) | | `SYNC_PUBKEYS_PER_AGGREGATE` | `uint64(2**6)` (= 64) |
| `INACTIVITY_SCORE_BIAS` | `uint64(4)` | | `INACTIVITY_SCORE_BIAS` | `uint64(4)` |
@ -126,7 +126,7 @@ This patch updates a few configuration values to move penalty parameters toward
| Name | Value | Unit | Duration | | Name | Value | Unit | Duration |
| - | - | :-: | :-: | | - | - | :-: | :-: |
| `EPOCHS_PER_SYNC_COMMITTEE_PERIOD` | `Epoch(2**8)` (= 256) | epochs | ~27 hours | | `EPOCHS_PER_SYNC_COMMITTEE_PERIOD` | `Epoch(2**9)` (= 512) | epochs | ~54 hours |
### Domain types ### Domain types