remove BankTestConfig.caching_enabled (#29173)

This commit is contained in:
Jeff Washington (jwash) 2022-12-09 13:52:36 -06:00 committed by GitHub
parent 560143a267
commit a3c95eaa53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -4795,7 +4795,6 @@ pub mod tests {
let (bank_forks, mint_keypair, leader_vote_keypair) =
new_bank_forks_with_config(BankTestConfig {
secondary_indexes: config.account_indexes.clone(),
accounts_db_caching_enabled: true,
});
let ledger_path = get_tmp_ledger_path!();

View File

@ -1151,7 +1151,6 @@ pub struct NewBankOptions {
#[derive(Debug, Default)]
pub struct BankTestConfig {
pub secondary_indexes: AccountSecondaryIndexes,
pub accounts_db_caching_enabled: bool,
}
#[derive(Debug)]