mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 22:25:24 +01:00
Merge pull request #7752 from yyforyongyu/improve-logging
contractcourt: improve logging for failing dangling htlcs
This commit is contained in:
commit
0005adaac8
1 changed files with 4 additions and 4 deletions
|
@ -1865,8 +1865,8 @@ func (c *ChannelArbitrator) checkRemoteDanglingActions(
|
|||
continue
|
||||
}
|
||||
|
||||
log.Infof("ChannelArbitrator(%v): immediately failing "+
|
||||
"htlc=%x from remote commitment",
|
||||
log.Infof("ChannelArbitrator(%v): fail dangling htlc=%x from "+
|
||||
"local/remote commitments diff",
|
||||
c.cfg.ChanPoint, htlc.RHash[:])
|
||||
|
||||
actionMap[HtlcFailNowAction] = append(
|
||||
|
@ -1949,8 +1949,8 @@ func (c *ChannelArbitrator) checkRemoteDiffActions(height uint32,
|
|||
actionMap[HtlcFailNowAction], htlc,
|
||||
)
|
||||
|
||||
log.Infof("ChannelArbitrator(%v): immediately failing "+
|
||||
"htlc=%x from remote commitment",
|
||||
log.Infof("ChannelArbitrator(%v): fail dangling htlc=%x from "+
|
||||
"remote commitments diff",
|
||||
c.cfg.ChanPoint, htlc.RHash[:])
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue