Skip to content

Commit

Permalink
Enable TIER1 outbound by default (#9349)
Browse files Browse the repository at this point in the history
This PR sets the default value for the `tier1.enable_outbound` parameter in the network config to `true`.

We are comfortable changing the default now that TIER1 has been voluntarily enabled by many validators in mainnet and used without incident for more than 2 months. At the time of this PR, more than 40 mainnet validators have TIER1 outbound enabled. 

The `enable_outbound` parameter will continue to exist, allowing for validators to opt out of the TIER1 network if desired.
  • Loading branch information
saketh-are authored Jul 31, 2023
1 parent 8f0f75e commit 2f53a5d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions chain/network/src/config_json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,8 @@ pub struct Config {
fn default_tier1_enable_inbound() -> bool {
true
}
/// This default will be changed over the next releases.
/// It allows us to gradually roll out the TIER1 feature.
fn default_tier1_enable_outbound() -> bool {
false
true
}

fn default_tier1_connect_interval() -> Duration {
Expand Down

0 comments on commit 2f53a5d

Please sign in to comment.