From 7f4602596cf9c8d850f514d7b7ca9bc68e95e2dd Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Thu, 26 Jul 2018 11:57:02 -0400 Subject: [PATCH 1/1] Fix some tab-space errors in #84 --- src/util/transaction_utils.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/util/transaction_utils.rs b/src/util/transaction_utils.rs index 9ad0b824..92bc209a 100644 --- a/src/util/transaction_utils.rs +++ b/src/util/transaction_utils.rs @@ -40,11 +40,11 @@ mod tests { use bitcoin::blockdata::script::{Script, Builder}; use bitcoin::blockdata::transaction::TxOut; - use bitcoin::util::hash::Sha256dHash; + use bitcoin::util::hash::Sha256dHash; use hex::decode; - #[test] + #[test] fn sort_output_by_value() { let txout1 = TxOut { value: 100, @@ -67,7 +67,7 @@ mod tests { ); } - #[test] + #[test] fn sort_output_by_script_pubkey() { let txout1 = TxOut { value: 100, @@ -90,7 +90,7 @@ mod tests { ); } - #[test] + #[test] fn sort_output_by_bip_test() { let txout1 = TxOut { value: 100000000, @@ -136,7 +136,7 @@ mod tests { assert_eq!(outputs, expected); } - )* + )* } } -- 2.30.2