rolls out merkle shreds to 100% of testnet slots (#32316)

This commit is contained in:
behzad nouri 2023-06-29 18:46:00 +00:00 committed by GitHub
parent 2850432b57
commit b722ce4519
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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