Fix rustfmt check (#23296)

This commit is contained in:
Justin Starry
2022-02-23 16:38:53 +08:00
committed by GitHub
parent 6872fc79ba
commit d0e85c293f
4 changed files with 10 additions and 13 deletions

View File

@ -1,6 +1,3 @@
use solana_program_runtime::timings::ExecuteTimingType;
use std::ops::Index;
use {
crate::{
cluster_info_vote_listener::SlotVoteTracker,
@ -9,10 +6,12 @@ use {
replay_stage::SUPERMINORITY_THRESHOLD,
},
solana_ledger::blockstore_processor::{ConfirmationProgress, ConfirmationTiming},
solana_program_runtime::timings::ExecuteTimingType,
solana_runtime::{bank::Bank, bank_forks::BankForks, vote_account::VoteAccount},
solana_sdk::{clock::Slot, hash::Hash, pubkey::Pubkey},
std::{
collections::{BTreeMap, HashMap, HashSet},
ops::Index,
sync::{Arc, RwLock},
time::Instant,
},