mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-26 22:46:38 +02:00
multi: rename fundingLockedMsg
to channelReadyMsg
This commit is created by running, ```shell gofmt -d -w -r 'fundingLockedMsg -> channelReadyMsg' . ```
This commit is contained in:
@@ -746,12 +746,12 @@ func (p *Brontide) loadActiveChannels(chans []*channeldb.OpenChannel) (
|
||||
return nil, err
|
||||
}
|
||||
|
||||
fundingLockedMsg := lnwire.NewChannelReady(
|
||||
channelReadyMsg := lnwire.NewChannelReady(
|
||||
chanID, second,
|
||||
)
|
||||
fundingLockedMsg.AliasScid = &aliasScid
|
||||
channelReadyMsg.AliasScid = &aliasScid
|
||||
|
||||
msgs = append(msgs, fundingLockedMsg)
|
||||
msgs = append(msgs, channelReadyMsg)
|
||||
}
|
||||
|
||||
// If we've negotiated the option-scid-alias feature
|
||||
|
Reference in New Issue
Block a user