Fix the dependency of accounts_file.rs (#30423)

Replace the use of append_vec::* in accounts_file.rs
This commit is contained in:
Yueh-Hsuan Chiang 2023-02-22 11:13:58 -08:00 committed by GitHub
parent a78f763896
commit 833cb75c20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -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},
};