Skip to content

Commit

Permalink
v2.0: rolls out chained Merkle shreds to ~50% of testnet slots (backp…
Browse files Browse the repository at this point in the history
…ort of #2660) (#2833)

rolls out chained Merkle shreds to ~50% of testnet slots (#2660)

(cherry picked from commit f2b7ef4)

Co-authored-by: behzad nouri <[email protected]>
  • Loading branch information
mergify[bot] and behzadnouri authored Sep 4, 2024
1 parent f111b36 commit ced98f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbine/src/broadcast_stage/standard_broadcast_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ fn should_chain_merkle_shreds(slot: Slot, cluster_type: ClusterType) -> bool {
ClusterType::Development => true,
ClusterType::Devnet => false,
ClusterType::MainnetBeta => false,
// Roll out chained Merkle shreds to ~21% of testnet.
ClusterType::Testnet => slot % 19 < 4,
// Roll out chained Merkle shreds to ~53% of testnet slots.
ClusterType::Testnet => slot % 19 < 10,
}
}

Expand Down

0 comments on commit ced98f1

Please sign in to comment.