diff --git a/configs/mainnet.yaml b/configs/mainnet.yaml index be07de5d561..1c0a12d4e97 100644 --- a/configs/mainnet.yaml +++ b/configs/mainnet.yaml @@ -84,8 +84,8 @@ CHURN_LIMIT_QUOTIENT: 65536 # Fork choice # --------------------------------------------------------------- -# 33% -PROPOSER_SCORE_BOOST: 33 +# 40% +PROPOSER_SCORE_BOOST: 40 # Deposit contract # --------------------------------------------------------------- diff --git a/configs/minimal.yaml b/configs/minimal.yaml index e84d2bdf594..e619ee9316f 100644 --- a/configs/minimal.yaml +++ b/configs/minimal.yaml @@ -81,8 +81,8 @@ CHURN_LIMIT_QUOTIENT: 32 # Fork choice # --------------------------------------------------------------- -# 33% -PROPOSER_SCORE_BOOST: 33 +# 40% +PROPOSER_SCORE_BOOST: 40 # Deposit contract diff --git a/specs/phase0/fork-choice.md b/specs/phase0/fork-choice.md index 2c33768e511..1593e07fe01 100644 --- a/specs/phase0/fork-choice.md +++ b/specs/phase0/fork-choice.md @@ -76,7 +76,7 @@ Any of the above handlers that trigger an unhandled exception (e.g. a failed ass | Name | Value | | ---------------------- | ------------ | -| `PROPOSER_SCORE_BOOST` | `uint64(33)` | +| `PROPOSER_SCORE_BOOST` | `uint64(40)` | - 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`.