Merge branch 'unstable' into progressive-list-tests

This commit is contained in:
Mac L
2026-06-02 02:26:55 +10:00
75 changed files with 1390 additions and 3394 deletions

View File

@@ -1197,3 +1197,15 @@ fn compute_columns_for_custody_group() {
ComputeColumnsForCustodyGroupHandler::<MainnetEthSpec>::default().run();
ComputeColumnsForCustodyGroupHandler::<MinimalEthSpec>::default().run();
}
#[test]
fn gossip_proposer_slashing() {
GossipValidationHandler::<MinimalEthSpec>::new("gossip_proposer_slashing").run();
GossipValidationHandler::<MainnetEthSpec>::new("gossip_proposer_slashing").run();
}
#[test]
fn gossip_attester_slashing() {
GossipValidationHandler::<MinimalEthSpec>::new("gossip_attester_slashing").run();
GossipValidationHandler::<MainnetEthSpec>::new("gossip_attester_slashing").run();
}