Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
v1.16: rolls out merkle shreds to ~50% of mainnet slots (backport of #…
Browse files Browse the repository at this point in the history
…32678) (#32720)

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

(cherry picked from commit 2078208)

Co-authored-by: behzad nouri <behzadnouri@gmail.com>
  • Loading branch information
mergify[bot] and behzadnouri authored Aug 4, 2023
1 parent db2b4ef commit 19333d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/broadcast_stage/standard_broadcast_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,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,
}
}

Expand Down

0 comments on commit 19333d8

Please sign in to comment.