diff --git a/ledger/src/blockstore_db.rs b/ledger/src/blockstore_db.rs index b3be1e6fe4b1a1..83c213b3a1b4bc 100644 --- a/ledger/src/blockstore_db.rs +++ b/ledger/src/blockstore_db.rs @@ -1188,7 +1188,7 @@ impl Column for columns::ProgramCosts { } impl Column for columns::ShredCode { - type Index = (Slot, u64); + type Index = (Slot, /*shred index:*/ u64); type Key = ::Key; #[inline] @@ -1214,7 +1214,7 @@ impl ColumnName for columns::ShredCode { } impl Column for columns::ShredData { - type Index = (Slot, u64); + type Index = (Slot, /*shred index:*/ u64); type Key = [u8; std::mem::size_of::() + std::mem::size_of::()]; #[inline]