lnwallet: fix logging message for fee floor

This commit is contained in:
Olaoluwa Osuntokun 2018-08-23 19:36:33 -07:00
parent fa6a0a7ce9
commit de92dac6a8
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -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
}