multi: rename NewFundingLocked to NewChannelReady

This commit is created by the following command,

```shell
gofmt -d -w -r 'NewFundingLocked -> NewChannelReady' .
```
This commit is contained in:
yyforyongyu 2023-03-16 04:46:30 +08:00
parent c8e8358918
commit 2dc08a2a76
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868
6 changed files with 7 additions and 7 deletions

View File

@ -2909,7 +2909,7 @@ func (f *Manager) sendFundingLocked(completeChan *channeldb.OpenChannel,
if err != nil {
return fmt.Errorf("unable to create next revocation: %v", err)
}
fundingLockedMsg := lnwire.NewFundingLocked(chanID, nextRevocation)
fundingLockedMsg := lnwire.NewChannelReady(chanID, nextRevocation)
// If the channel negotiated the option-scid-alias feature bit, we'll
// send a TLV segment that includes an alias the peer can use in their
@ -3517,7 +3517,7 @@ func (f *Manager) handleFundingLocked(peer lnpeer.Peer,
return
}
fundingLockedMsg := lnwire.NewFundingLocked(
fundingLockedMsg := lnwire.NewChannelReady(
chanID, secondPoint,
)
fundingLockedMsg.AliasScid = &alias

View File

@ -734,7 +734,7 @@ func (l *channelLink) syncChanStates() error {
"revocation: %v", err)
}
fundingLockedMsg := lnwire.NewFundingLocked(
fundingLockedMsg := lnwire.NewChannelReady(
l.ChanID(), nextRevocation,
)

View File

@ -35,7 +35,7 @@ type ChannelReady struct {
// NewFundingLocked creates a new FundingLocked message, populating it with the
// necessary IDs and revocation secret.
func NewFundingLocked(cid ChannelID, npcp *btcec.PublicKey) *ChannelReady {
func NewChannelReady(cid ChannelID, npcp *btcec.PublicKey) *ChannelReady {
return &ChannelReady{
ChanID: cid,
NextPerCommitmentPoint: npcp,

View File

@ -580,7 +580,7 @@ func TestLightningWireProtocol(t *testing.T) {
return
}
req := NewFundingLocked(ChannelID(c), pubKey)
req := NewChannelReady(ChannelID(c), pubKey)
v[0] = reflect.ValueOf(*req)
},

View File

@ -452,7 +452,7 @@ func newMsgFundingLocked(t testing.TB, r io.Reader) *lnwire.ChannelReady {
pubKey := randPubKey(t)
msg := lnwire.NewFundingLocked(lnwire.ChannelID(c), pubKey)
msg := lnwire.NewChannelReady(lnwire.ChannelID(c), pubKey)
msg.ExtraData = createExtraData(t, r)
return msg

View File

@ -746,7 +746,7 @@ func (p *Brontide) loadActiveChannels(chans []*channeldb.OpenChannel) (
return nil, err
}
fundingLockedMsg := lnwire.NewFundingLocked(
fundingLockedMsg := lnwire.NewChannelReady(
chanID, second,
)
fundingLockedMsg.AliasScid = &aliasScid