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

v1.16: rolls out merkle shreds to ~50% of mainnet slots (backport of #32678) #32720

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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