solana/ledger/src
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
..
blockstore framework to preserve optimistic_slot in blockstore (#25362) 2022-05-20 16:46:23 -07:00
shred adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
ancestor_iterator.rs uses Option<Slot> for SlotMeta.parent_slot (#21808) 2021-12-14 18:57:11 +00:00
bank_forks_utils.rs Add options to store full and/or incremental snapshots in separate locations (#24247) 2022-05-10 16:37:41 -04:00
bigtable_delete.rs Add `delete` subcommand to `ledger-tool bigtable` (#19931) 2021-09-16 23:37:45 +00:00
bigtable_upload.rs clippy: fix "this let-binding has unit value" warnings (#25429) 2022-05-22 12:17:59 -04:00
bigtable_upload_service.rs Add configurable limit to number of blocks to check before Bigtable upload (#24716) 2022-05-13 07:34:02 +00:00
block_error.rs Fix derive_partial_eq_without_eq clippy lint 2022-05-22 22:22:21 -07:00
blockstore.rs adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
blockstore_db.rs Use the new datapoint macro for RocksDB column family metrics (#25505) 2022-05-31 09:26:57 -07:00
blockstore_meta.rs Fix derive_partial_eq_without_eq clippy lint 2022-05-22 22:22:21 -07:00
blockstore_metrics.rs Cleanup BlockstoreInsertionMetrics (#25618) 2022-06-01 10:54:11 -05:00
blockstore_options.rs (Refactor) Move blocktore options related stuff to blockstore_options.rs (#25509) 2022-05-26 16:59:26 -07:00
blockstore_processor.rs (Refactor) Move blocktore options related stuff to blockstore_options.rs (#25509) 2022-05-26 16:59:26 -07:00
builtins.rs Skip adding builtins if they will be removed (#23233) 2022-02-18 18:36:59 -08:00
genesis_utils.rs Initial solana-test-validator command-line program 2020-12-11 04:17:38 +00:00
leader_schedule.rs Fix derive_partial_eq_without_eq clippy lint 2022-05-22 22:22:21 -07:00
leader_schedule_cache.rs Make test_next_leader_slot_next_epoch() aware of stake minimum delegation (#24660) 2022-04-26 08:31:06 -04:00
leader_schedule_utils.rs retransmit consecutive leader blocks (#22157) 2022-01-04 00:24:16 -08:00
lib.rs Use the new datapoint macro for RocksDB column family metrics (#25505) 2022-05-31 09:26:57 -07:00
next_slots_iterator.rs Reformat imports to a consistent style for imports 2021-12-03 09:19:13 -08:00
rooted_slot_iterator.rs Reformat imports to a consistent style for imports 2021-12-03 09:19:13 -08:00
shred.rs adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
shredder.rs adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
sigverify_shreds.rs adds support for different variants of ShredCode and ShredData 2022-06-02 18:55:50 +00:00
slot_stats.rs track fec set turbine stats (#23989) 2022-04-04 14:44:21 -07:00
staking_utils.rs checks account owner when initializing a vote-account (#25018) 2022-05-06 16:22:49 +00:00