From 2dcbdf2622c1db31d1dbf2fa7a448dc14c02259f Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 20 Sep 2018 19:20:01 -0700 Subject: [PATCH] lnwallet: fix logging error when fee is too low in BtcdFeeEstimator --- lnwallet/fee_estimator.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lnwallet/fee_estimator.go b/lnwallet/fee_estimator.go index 24adee93..1f63a19f 100644 --- a/lnwallet/fee_estimator.go +++ b/lnwallet/fee_estimator.go @@ -229,7 +229,8 @@ func (b *BtcdFeeEstimator) fetchEstimate(confTarget uint32) (SatPerKWeight, erro // 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 }