rolls out merkle shreds to ~20% of mainnet slots (#32532)

This commit is contained in:
behzad nouri 2023-07-21 14:37:57 +00:00 committed by GitHub
parent 5752505548
commit 9efa0eacac
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) == 1,
ClusterType::MainnetBeta => (slot % 19) < 4,
}
}