From b722ce4519f08ec02eac7ba2f3278bb97c8e4d41 Mon Sep 17 00:00:00 2001 From: behzad nouri Date: Thu, 29 Jun 2023 18:46:00 +0000 Subject: [PATCH] rolls out merkle shreds to 100% of testnet slots (#32316) --- turbine/src/broadcast_stage/standard_broadcast_run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/turbine/src/broadcast_stage/standard_broadcast_run.rs b/turbine/src/broadcast_stage/standard_broadcast_run.rs index af0f465ac0..e8e43c938f 100644 --- a/turbine/src/broadcast_stage/standard_broadcast_run.rs +++ b/turbine/src/broadcast_stage/standard_broadcast_run.rs @@ -501,8 +501,8 @@ impl BroadcastRun for StandardBroadcastRun { } } -fn should_use_merkle_variant(slot: Slot, cluster_type: ClusterType, shred_version: u16) -> bool { - cluster_type == ClusterType::Testnet && shred_version == 28353 && (slot % 19 < 10) +fn should_use_merkle_variant(_: Slot, cluster_type: ClusterType, shred_version: u16) -> bool { + cluster_type == ClusterType::Testnet && shred_version == 28353 } #[cfg(test)]