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
6 changed files with 7 additions and 7 deletions

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