From 0b6b5a2ab7cd3fd7a708dab5ee5c9c1d8328891f 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) (cherry picked from commit 207820879b29d42676ee61996d5e10a3c4034f99) --- core/src/broadcast_stage/standard_broadcast_run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/broadcast_stage/standard_broadcast_run.rs b/core/src/broadcast_stage/standard_broadcast_run.rs index d7ba912585ab44..40292f6f78ed8b 100644 --- a/core/src/broadcast_stage/standard_broadcast_run.rs +++ b/core/src/broadcast_stage/standard_broadcast_run.rs @@ -500,7 +500,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, } }