From de92dac6a8a57003b6bacca9a6f02e56c4bafcf7 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 23 Aug 2018 19:36:33 -0700 Subject: [PATCH] lnwallet: fix logging message for fee floor --- lnwallet/fee_estimator.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lnwallet/fee_estimator.go b/lnwallet/fee_estimator.go index c0574c5dd..24adee934 100644 --- a/lnwallet/fee_estimator.go +++ b/lnwallet/fee_estimator.go @@ -398,7 +398,9 @@ func (b *BitcoindFeeEstimator) fetchEstimate(confTarget uint32) (SatPerKWeight, // Finally, we'll enforce our fee floor. if satPerKw < b.minFeePerKW { walletLog.Debugf("Estimated fee rate of %v sat/kw is too low, "+ - "using fee floor of %v sat/kw instead", b.minFeePerKW) + "using fee floor of %v sat/kw instead", satPerKw, + b.minFeePerKW) + satPerKw = b.minFeePerKW }