mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-05-20 16:50:54 +02:00
htlcswitch: only re-send FundingLocked if the channel is fully confirmed
This commit is contained in:
parent
d6dcc4276c
commit
669c2ee1a0
@ -405,10 +405,12 @@ func (l *channelLink) htlcManager() {
|
||||
// this, as at this point we can't be sure if they've
|
||||
// really received the FundingLocked message.
|
||||
if remoteChanSyncMsg.NextLocalCommitHeight == 1 &&
|
||||
localChanSyncMsg.NextLocalCommitHeight == 1 {
|
||||
localChanSyncMsg.NextLocalCommitHeight == 1 &&
|
||||
!l.channel.IsPending() {
|
||||
|
||||
log.Debugf("Resending fundingLocked message " +
|
||||
"to peer")
|
||||
log.Infof("ChannelPoint(%v): resending "+
|
||||
"FundingLocked message to peer",
|
||||
l.channel.ChannelPoint())
|
||||
|
||||
nextRevocation, err := l.channel.NextRevocationKey()
|
||||
if err != nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user