Skip to content

Commit

Permalink
Fix CI issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
fkouteib committed Oct 4, 2024
1 parent 87c8502 commit 10b05e0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions ledger/src/blockstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ impl Blockstore {
pub fn db_ref(&self) -> &Arc<Database> {
&self.db
}

pub fn ledger_path(&self) -> &PathBuf {
&self.ledger_path
}
Expand Down
1 change: 0 additions & 1 deletion ledger/src/blockstore_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,6 @@ impl<C: Column + ColumnName> LedgerColumn<C> {
}
}

#[derive(Default)]
pub struct WriteBatch<'a> {
write_batch: RWriteBatch,
map: HashMap<&'static str, &'a ColumnFamily>,
Expand Down
2 changes: 1 addition & 1 deletion rpc/src/transaction_status_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ pub(crate) mod tests {
transactions: vec![transaction1, transaction2],
commit_results: vec![commit_result.clone(), commit_result],
balances: balances.clone(),
token_balances: token_balances,
token_balances,
transaction_indexes: vec![transaction_index1, transaction_index2],
};

Expand Down

0 comments on commit 10b05e0

Please sign in to comment.