diff --git a/turbine/src/broadcast_stage/standard_broadcast_run.rs b/turbine/src/broadcast_stage/standard_broadcast_run.rs index 1d34ccb31cc100..814fed7deedc05 100644 --- a/turbine/src/broadcast_stage/standard_broadcast_run.rs +++ b/turbine/src/broadcast_stage/standard_broadcast_run.rs @@ -506,13 +506,12 @@ impl BroadcastRun for StandardBroadcastRun { } } -fn should_chain_merkle_shreds(slot: Slot, cluster_type: ClusterType) -> bool { +fn should_chain_merkle_shreds(_slot: Slot, cluster_type: ClusterType) -> bool { match cluster_type { ClusterType::Development => true, ClusterType::Devnet => false, ClusterType::MainnetBeta => false, - // Roll out chained Merkle shreds to ~53% of testnet slots. - ClusterType::Testnet => slot % 19 < 10, + ClusterType::Testnet => true, } }