Skip to content

Commit

Permalink
rolls out merkle shreds to ~20% of mainnet slots (#32532)
Browse files Browse the repository at this point in the history
  • Loading branch information
behzadnouri authored Jul 21, 2023
1 parent 5752505 commit 9efa0ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion turbine/src/broadcast_stage/standard_broadcast_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit 9efa0ea

Please sign in to comment.