Skip to content

Commit

Permalink
Fix the dependency of accounts_file.rs (solana-labs#30423)
Browse files Browse the repository at this point in the history
Replace the use of append_vec::* in accounts_file.rs
  • Loading branch information
yhchiang-sol authored Feb 22, 2023
1 parent a78f763 commit 833cb75
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion runtime/src/accounts_file.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
use {
crate::{append_vec::*, storable_accounts::StorableAccounts},
crate::{
append_vec::{
AppendVec, MatchAccountOwnerError, StorableAccountsWithHashesAndWriteVersions,
StoredAccountMeta,
},
storable_accounts::StorableAccounts,
},
solana_sdk::{account::ReadableAccount, clock::Slot, hash::Hash, pubkey::Pubkey},
std::{borrow::Borrow, io, path::PathBuf},
};
Expand Down

0 comments on commit 833cb75

Please sign in to comment.