From 199940d68323ec9a6d9284c9ba57c68d4334c91d Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 24 Sep 2020 08:57:18 -0700 Subject: [PATCH] cargo fmt --- runtime/src/bank.rs | 2 +- runtime/src/message_processor.rs | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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};