diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index 089891ce6..411b0dccb 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -12,9 +12,9 @@ use crate::{ blockhash_queue::BlockhashQueue, builtins::*, epoch_stakes::{EpochStakes, NodeVoteAccounts}, - instruction_recorder::InstructionRecorder, feature::Feature, feature_set::{self, FeatureSet}, + instruction_recorder::InstructionRecorder, log_collector::LogCollector, message_processor::{Executors, MessageProcessor}, nonce_utils, diff --git a/runtime/src/message_processor.rs b/runtime/src/message_processor.rs index 1559eba01..ae10a48ed 100644 --- a/runtime/src/message_processor.rs +++ b/runtime/src/message_processor.rs @@ -1,7 +1,9 @@ use crate::{ - instruction_recorder::InstructionRecorder, log_collector::LogCollector, - native_loader::NativeLoader, rent_collector::RentCollector, feature_set::{self, FeatureSet}, + instruction_recorder::InstructionRecorder, + log_collector::LogCollector, + native_loader::NativeLoader, + rent_collector::RentCollector, }; use log::*; use serde::{Deserialize, Serialize};