Skip to content

Commit 858279a

Browse files
v2.0: rolls out chained Merkle shreds to ~21% of testnet (backport of #2503) (#2564)
rolls out chained Merkle shreds to ~21% of testnet slots (#2503) (cherry picked from commit ea10d2e) Co-authored-by: behzad nouri <[email protected]>
1 parent 35389e6 commit 858279a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

turbine/src/broadcast_stage/standard_broadcast_run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,8 +511,8 @@ fn should_chain_merkle_shreds(slot: Slot, cluster_type: ClusterType) -> bool {
511511
ClusterType::Development => true,
512512
ClusterType::Devnet => false,
513513
ClusterType::MainnetBeta => false,
514-
// Roll out chained Merkle shreds to ~5% of testnet.
515-
ClusterType::Testnet => slot % 19 == 1,
514+
// Roll out chained Merkle shreds to ~21% of testnet.
515+
ClusterType::Testnet => slot % 19 < 4,
516516
}
517517
}
518518

0 commit comments

Comments
 (0)