rolls out merkle shreds to ~50% of mainnet slots (#32678)

This commit is contained in:
behzad nouri 2023-08-04 20:33:08 +00:00 committed by GitHub
parent a5bde0a79c
commit 207820879b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,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,
}
}