From b83dd508389240709ef65f4872768029cdd24857 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 e56bb16c6857d7..fceaa86d8bd97c 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, } }