Skip to content

Commit

Permalink
rolls out chained Merkle shreds to ~21% of testnet slots (#2503)
Browse files Browse the repository at this point in the history
(cherry picked from commit ea10d2e)
  • Loading branch information
behzadnouri authored and mergify[bot] committed Aug 12, 2024
1 parent 35389e6 commit 34d54ed
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 @@ -511,8 +511,8 @@ fn should_chain_merkle_shreds(slot: Slot, cluster_type: ClusterType) -> bool {
ClusterType::Development => true,
ClusterType::Devnet => false,
ClusterType::MainnetBeta => false,
// Roll out chained Merkle shreds to ~5% of testnet.
ClusterType::Testnet => slot % 19 == 1,
// Roll out chained Merkle shreds to ~21% of testnet.
ClusterType::Testnet => slot % 19 < 4,
}
}

Expand Down

0 comments on commit 34d54ed

Please sign in to comment.