solana-with-rpc-optimizations/core/benches
behzad nouri 81231a89b9 adds support for different variants of ShredCode and ShredData
The commit implements two new types:
    pub enum ShredCode {
        Legacy(legacy::ShredCode),
    }
    pub enum ShredData {
        Legacy(legacy::ShredData),
    }

Following commits will extend these types by adding merkle variants:
    pub enum ShredCode {
        Legacy(legacy::ShredCode),
        Merkle(merkle::ShredCode),
    }
    pub enum ShredData {
        Legacy(legacy::ShredData),
        Merkle(merkle::ShredData),
    }
2022-06-02 18:55:50 +00:00
..
banking_stage.rs Refactor Sigverify trait (#25359) 2022-05-24 16:01:41 -05:00
cluster_info.rs enforces that LAST_SHRED_IN_SLOT is also DATA_COMPLETE_SHRED (#24892) 2022-05-02 23:33:53 +00:00
cluster_nodes.rs enforces that LAST_SHRED_IN_SLOT is also DATA_COMPLETE_SHRED (#24892) 2022-05-02 23:33:53 +00:00
consensus.rs Update all BankForks methods to return owned values (#24801) 2022-04-28 18:51:00 +00:00
gen_keys.rs
retransmit_stage.rs
shredder.rs adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
sigverify_stage.rs Bench: preshrink + sigverify (#25480) 2022-06-02 09:19:01 -05:00
unprocessed_packet_batches.rs Make PacketBatch packets vector non-public (#25413) 2022-05-23 15:30:15 -05:00