Reformat imports to a consistent style for imports
rustfmt.toml configuration: imports_granularity = "One" group_imports = "One"
This commit is contained in:
@ -2,10 +2,12 @@
|
||||
|
||||
extern crate test;
|
||||
|
||||
use log::*;
|
||||
use solana_program_runtime::{pre_account::PreAccount, timings::ExecuteDetailsTimings};
|
||||
use solana_sdk::{account::AccountSharedData, pubkey, rent::Rent};
|
||||
use test::Bencher;
|
||||
use {
|
||||
log::*,
|
||||
solana_program_runtime::{pre_account::PreAccount, timings::ExecuteDetailsTimings},
|
||||
solana_sdk::{account::AccountSharedData, pubkey, rent::Rent},
|
||||
test::Bencher,
|
||||
};
|
||||
|
||||
#[bench]
|
||||
fn bench_verify_account_changes_data(bencher: &mut Bencher) {
|
||||
|
Reference in New Issue
Block a user