mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-26 08:55:59 +01:00
lnwallet: clarify-available-commitment-balance-message [skip ci]
This commit is contained in:
parent
5cb4811e86
commit
e16efd6f08
1 changed files with 5 additions and 5 deletions
|
@ -8366,11 +8366,11 @@ func (lc *LightningChannel) availableCommitmentBalance(view *htlcView,
|
|||
if theirBalance < commitFeeWithHtlc && ourBalance >= nonDustHtlcAmt {
|
||||
// see https://github.com/lightning/bolts/issues/728
|
||||
ourReportedBalance := nonDustHtlcAmt - 1
|
||||
lc.log.Infof("Reducing local balance (from %v to %v): "+
|
||||
"remote side does not have enough funds (%v < %v) to "+
|
||||
"pay for non-dust HTLC in case of unilateral close.",
|
||||
ourBalance, ourReportedBalance, theirBalance,
|
||||
commitFeeWithHtlc)
|
||||
lc.log.Infof("Reducing local (reported) balance "+
|
||||
"(from %v to %v): remote side does not have enough "+
|
||||
"funds (%v < %v) to pay for non-dust HTLC in case of "+
|
||||
"unilateral close.", ourBalance, ourReportedBalance,
|
||||
theirBalance, commitFeeWithHtlc)
|
||||
ourBalance = ourReportedBalance
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue