Skip to content

Commit

Permalink
rolls out chained Merkle shreds to ~21% of mainnet slots (#4431)
Browse files Browse the repository at this point in the history
  • Loading branch information
behzadnouri authored Jan 13, 2025
1 parent 324779d commit 9d09787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbine/src/broadcast_stage/standard_broadcast_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ fn should_chain_merkle_shreds(slot: Slot, cluster_type: ClusterType) -> bool {
match cluster_type {
ClusterType::Development => true,
ClusterType::Devnet => true,
// Roll out chained Merkle shreds to ~5% of mainnet slots.
ClusterType::MainnetBeta => slot % 19 == 1,
// Roll out chained Merkle shreds to ~21% of mainnet slots.
ClusterType::MainnetBeta => slot % 19 < 4,
ClusterType::Testnet => true,
}
}
Expand Down

0 comments on commit 9d09787

Please sign in to comment.