Set PROPOSER_SCORE_BOOST to 70%

This commit is contained in:
Aditya Asgaonkar 2021-11-23 07:23:59 -08:00
parent ecbe9190b9
commit 2a5c9d8dc5
3 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ CHURN_LIMIT_QUOTIENT: 65536
# Fork choice
# ---------------------------------------------------------------
# 25%
PROPOSER_SCORE_BOOST: 25
PROPOSER_SCORE_BOOST: 70
# Deposit contract
# ---------------------------------------------------------------

View File

@ -72,7 +72,7 @@ CHURN_LIMIT_QUOTIENT: 32
# Fork choice
# ---------------------------------------------------------------
# 25%
PROPOSER_SCORE_BOOST: 25
PROPOSER_SCORE_BOOST: 70
# Deposit contract

View File

@ -75,7 +75,7 @@ Any of the above handlers that trigger an unhandled exception (e.g. a failed ass
| Name | Value |
| - | - |
| `PROPOSER_SCORE_BOOST` | `uint64(25)` |
| `PROPOSER_SCORE_BOOST` | `uint64(70)` |
- 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`.