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 }