From a5553ebba5b70b219bf8174a354b9b8bcf1ac55c Mon Sep 17 00:00:00 2001 From: yeastplume Date: Fri, 22 Jun 2018 14:05:03 +0100 Subject: [PATCH] rustfmt --- wallet/tests/common/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wallet/tests/common/mod.rs b/wallet/tests/common/mod.rs index eaa7b208e..325c4347b 100644 --- a/wallet/tests/common/mod.rs +++ b/wallet/tests/common/mod.rs @@ -28,8 +28,8 @@ use core::core::hash::Hashed; use core::core::{Output, OutputFeatures, OutputIdentifier, Transaction, TxKernel}; use core::{consensus, global, pow}; use keychain::ExtKeychain; -use wallet::file_wallet::FileWallet; use wallet::WalletConfig; +use wallet::file_wallet::FileWallet; use wallet::libwallet::internal::updater; use wallet::libwallet::types::{BlockFees, BlockIdentifier, MerkleProofWrapper, OutputStatus, WalletBackend}; @@ -84,7 +84,8 @@ where let mut unconfirmed_total = 0; let mut locked_total = 0; let keychain = wallet.keychain().clone(); - for out in wallet.iter() + for out in wallet + .iter() .filter(|out| out.root_key_id == keychain.root_key_id()) { if out.status == OutputStatus::Unspent {