Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AshwinSekar authored and Steven Czabaniuk committed Jan 5, 2024
1 parent a1d2f04 commit 1c96c17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions ledger/src/blockstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,8 @@ pub struct Blockstore {
program_costs_cf: LedgerColumn<cf::ProgramCosts>,
bank_hash_cf: LedgerColumn<cf::BankHash>,
optimistic_slots_cf: LedgerColumn<cf::OptimisticSlots>,
<<<<<<< HEAD
last_root: RwLock<Slot>,
=======
max_root: AtomicU64,
merkle_root_meta_cf: LedgerColumn<cf::MerkleRootMeta>,
>>>>>>> e457c02879 (add merkle root meta column to blockstore (#33979))
last_root: RwLock<Slot>,
insert_shreds_lock: Mutex<()>,
new_shreds_signals: Mutex<Vec<Sender<bool>>>,
completed_slots_senders: Mutex<Vec<CompletedSlotsSender>>,
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/blockstore_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ impl Column for columns::MerkleRootMeta {
key
}

fn slot((slot, _fec_set_index): Self::Index) -> Slot {
fn primary_index((slot, _fec_set_index): Self::Index) -> Slot {
slot
}

Expand Down

0 comments on commit 1c96c17

Please sign in to comment.