diff --git a/accounts-db/src/accounts.rs b/accounts-db/src/accounts.rs
index 7265626d8927e5..0ac199e6633522 100644
--- a/accounts-db/src/accounts.rs
+++ b/accounts-db/src/accounts.rs
@@ -24,7 +24,7 @@ use {
itertools::Itertools,
log::*,
solana_program_runtime::{
- compute_budget::{self, ComputeBudget},
+ compute_budget_processor::process_compute_budget_instructions,
loaded_programs::LoadedProgramsForTxBatch,
},
solana_sdk::{
@@ -34,9 +34,8 @@ use {
bpf_loader_upgradeable::{self, UpgradeableLoaderState},
clock::{BankId, Slot},
feature_set::{
- self, add_set_tx_loaded_accounts_data_size_instruction,
- include_loaded_accounts_data_size_in_fee_calculation,
- remove_congestion_multiplier_from_fee_calculation, remove_deprecated_request_unit_ix,
+ self, include_loaded_accounts_data_size_in_fee_calculation,
+ remove_congestion_multiplier_from_fee_calculation,
simplify_writable_program_account_check, FeatureSet,
},
fee::FeeStructure,
@@ -246,15 +245,16 @@ impl Accounts {
feature_set: &FeatureSet,
) -> Result