From 040cce1eb6a9b009bdb6bb56f91e14475f12ca1a Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Fri, 7 May 2021 09:04:19 +1000 Subject: [PATCH] Format all the files --- swap/src/bitcoin/wallet.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swap/src/bitcoin/wallet.rs b/swap/src/bitcoin/wallet.rs index a0044b0c..5fb200c9 100644 --- a/swap/src/bitcoin/wallet.rs +++ b/swap/src/bitcoin/wallet.rs @@ -356,8 +356,8 @@ fn estimate_fee( ) -> Amount { // Doing some heavy math here :) // `usize` is 32 or 64 bits wide, but `f32`'s mantissa is only 23 bits wide. - // This is fine because such a big transaction cannot exist and there are also no - // negative fees. + // This is fine because such a big transaction cannot exist and there are also + // no negative fees. #[allow( clippy::cast_precision_loss, clippy::cast_possible_truncation,