Update PROPOSER_SCORE_BOOST to 33 percent

This commit is contained in:
Caspar Schwarz-Schilling 2022-05-09 10:17:24 +02:00
parent c1d0836936
commit f5303ca58e
3 changed files with 41 additions and 39 deletions

View File

@ -84,8 +84,8 @@ CHURN_LIMIT_QUOTIENT: 65536
# Fork choice
# ---------------------------------------------------------------
# 70%
PROPOSER_SCORE_BOOST: 70
# 33%
PROPOSER_SCORE_BOOST: 33
# Deposit contract
# ---------------------------------------------------------------

View File

@ -81,8 +81,8 @@ CHURN_LIMIT_QUOTIENT: 32
# Fork choice
# ---------------------------------------------------------------
# 70%
PROPOSER_SCORE_BOOST: 70
# 33%
PROPOSER_SCORE_BOOST: 33
# Deposit contract

View File

@ -5,6 +5,8 @@
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Phase 0 -- Beacon Chain Fork Choice](#phase-0----beacon-chain-fork-choice)
- [Table of contents](#table-of-contents)
- [Introduction](#introduction)
- [Fork choice](#fork-choice)
- [Constant](#constant)
@ -63,20 +65,20 @@ Any of the above handlers that trigger an unhandled exception (e.g. a failed ass
### Constant
| Name | Value |
| - | - |
| -------------------- | ----------- |
| `INTERVALS_PER_SLOT` | `uint64(3)` |
### Preset
| Name | Value | Unit | Duration |
| - | - | :-: | :-: |
| -------------------------------- | ------------ | :---: | :--------: |
| `SAFE_SLOTS_TO_UPDATE_JUSTIFIED` | `2**3` (= 8) | slots | 96 seconds |
### Configuration
| Name | Value |
| - | - |
| `PROPOSER_SCORE_BOOST` | `uint64(70)` |
| ---------------------- | ------------ |
| `PROPOSER_SCORE_BOOST` | `uint64(33)` |
- The proposer score boost is worth `PROPOSER_SCORE_BOOST` percentage of the committee's weight, i.e., for slot with committee weight `committee_weight` the boost weight is equal to `(committee_weight * PROPOSER_SCORE_BOOST) // 100`.