From d43b00118949d381c4366d84a403cb575102ff6e Mon Sep 17 00:00:00 2001 From: behzad nouri Date: Mon, 21 Nov 2022 16:20:02 +0000 Subject: [PATCH] rolls out merkle shreds to ~20% of testnet (#28905) --- 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 f58ab368e..b0addfb5a 100644 --- a/core/src/broadcast_stage/standard_broadcast_run.rs +++ b/core/src/broadcast_stage/standard_broadcast_run.rs @@ -474,7 +474,7 @@ impl BroadcastRun for StandardBroadcastRun { } fn should_use_merkle_variant(slot: Slot, cluster_type: ClusterType, shred_version: u16) -> bool { - cluster_type == ClusterType::Testnet && shred_version == 24371 && (slot % 19 == 1) + cluster_type == ClusterType::Testnet && shred_version == 6995 && (slot % 19 < 4) } #[cfg(test)]