Skip to content

Commit

Permalink
Enable proposer boost on mainnet and GBC
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Mar 30, 2022
1 parent 26e5281 commit 6f33d1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,8 @@ CHURN_LIMIT_QUOTIENT: 4096

# Fork choice
# ---------------------------------------------------------------
# TODO: enable once proposer boosting is desired on mainnet
# 70%
# PROPOSER_SCORE_BOOST: 70
PROPOSER_SCORE_BOOST: 70

# Deposit contract
# ---------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,8 @@ CHURN_LIMIT_QUOTIENT: 65536

# Fork choice
# ---------------------------------------------------------------
# TODO: enable once proposer boosting is desired on mainnet
# 70%
# PROPOSER_SCORE_BOOST: 70
PROPOSER_SCORE_BOOST: 70

# Deposit contract
# ---------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions consensus/types/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ impl ChainSpec {
* Fork choice
*/
safe_slots_to_update_justified: 8,
proposer_score_boost: None,
proposer_score_boost: Some(70),

/*
* Eth1
Expand Down Expand Up @@ -698,7 +698,7 @@ impl ChainSpec {
* Fork choice
*/
safe_slots_to_update_justified: 8,
proposer_score_boost: None,
proposer_score_boost: Some(70),

/*
* Eth1
Expand Down

0 comments on commit 6f33d1a

Please sign in to comment.