From 207820879b29d42676ee61996d5e10a3c4034f99 Mon Sep 17 00:00:00 2001 From: behzad nouri Date: Fri, 4 Aug 2023 20:33:08 +0000 Subject: [PATCH] rolls out merkle shreds to ~50% of mainnet slots (#32678) --- turbine/src/broadcast_stage/standard_broadcast_run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbine/src/broadcast_stage/standard_broadcast_run.rs b/turbine/src/broadcast_stage/standard_broadcast_run.rs index 6157a40712..ac45fecbf0 100644 --- a/turbine/src/broadcast_stage/standard_broadcast_run.rs +++ b/turbine/src/broadcast_stage/standard_broadcast_run.rs @@ -509,7 +509,7 @@ impl BroadcastRun for StandardBroadcastRun { fn should_use_merkle_variant(slot: Slot, cluster_type: ClusterType) -> bool { match cluster_type { ClusterType::Testnet | ClusterType::Devnet | ClusterType::Development => true, - ClusterType::MainnetBeta => (slot % 19) < 4, + ClusterType::MainnetBeta => (slot % 19) < 10, } }