rolls out merkle shreds to ~20% of testnet (#28905)

This commit is contained in:
behzad nouri 2022-11-21 16:20:02 +00:00 committed by GitHub
parent 4c2733485a
commit d43b001189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)]