diff --git a/accounts-db/src/accounts.rs b/accounts-db/src/accounts.rs
index 47b372d981843a..4ff891fc8bd0a8 100644
--- a/accounts-db/src/accounts.rs
+++ b/accounts-db/src/accounts.rs
@@ -25,7 +25,7 @@ use {
itertools::Itertools,
log::*,
solana_program_runtime::{
- compute_budget::{self, ComputeBudget},
+ compute_budget_processor::process_compute_budget_instructions,
loaded_programs::LoadedProgramsForTxBatch,
},
solana_sdk::{
@@ -35,9 +35,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,
@@ -247,15 +246,16 @@ impl Accounts {
feature_set: &FeatureSet,
) -> Result