chanfunding: fix tiny typo

This commit is contained in:
Bjarne Magnussen 2020-08-27 11:27:03 +02:00
parent c56457c869
commit 493bc27ec2
No known key found for this signature in database
GPG Key ID: B0A9ADF6B24CE67F

@ -208,7 +208,7 @@ func CoinSelectSubtractFees(feeRate chainfee.SatPerKWeight, amt,
// TODO(halseth): smarter fee limit. Make configurable or dynamic wrt
// total funding size?
if fee > totalOut/5 {
return nil, 0, 0, fmt.Errorf("fee %v on total output"+
return nil, 0, 0, fmt.Errorf("fee %v on total output "+
"value %v", fee, totalOut)
}