Skip to content

Commit

Permalink
[e2e-test] commit for fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
welbon committed Aug 2, 2023
1 parent a9e09c7 commit 9fbbad5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/db-exporter/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use db_exporter::{
verify_header::{verify_header_via_export_file, VerifyHeaderOptions},
verify_module::{verify_modules_via_export_file, VerifyModuleOptions},
};
use num_cpus;
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
use num_cpus;
use serde::{ser::SerializeMap, Serialize, Serializer};
use starcoin_account_api::AccountInfo;
use starcoin_accumulator::{node::AccumulatorStoreType, Accumulator, MerkleAccumulator};
Expand Down
2 changes: 1 addition & 1 deletion node/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use futures::channel::oneshot;
use futures::executor::block_on;
use futures_timer::Delay;
use network_api::{PeerProvider, PeerSelector, PeerStrategy};
use num_cpus;
use starcoin_account_service::{AccountEventService, AccountService, AccountStorage};
use starcoin_block_relayer::BlockRelayer;
use starcoin_chain_notify::ChainNotifyHandlerService;
Expand Down Expand Up @@ -57,7 +58,6 @@ use starcoin_vm_runtime::metrics::VMMetrics;
use starcoin_vm_runtime::starcoin_vm::StarcoinVM;
use std::sync::Arc;
use std::time::{Duration, SystemTime};
use num_cpus;

pub struct NodeService {
registry: ServiceRef<RegistryService>,
Expand Down
2 changes: 1 addition & 1 deletion vm/transaction-benchmarks/benches/transaction_benches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fn peer_to_peer<M: Measurement + 'static>(c: &mut Criterion<M>) {
let bencher = TransactionBencher::new(
any_with::<P2PTransferGen>((10_000, 10_000_000)),
default_num_accounts,
default_num_transactions
default_num_transactions,
);
bencher.bench(b)
});
Expand Down

0 comments on commit 9fbbad5

Please sign in to comment.