mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-13 11:09:23 +01:00
funding: initialize remove channel.
This commit is contained in:
parent
e1259cd3c7
commit
a5d2541292
1 changed files with 3 additions and 2 deletions
|
@ -506,8 +506,9 @@ func NewBrontide(cfg Config) *Brontide {
|
|||
activeChannels: &lnutils.SyncMap[
|
||||
lnwire.ChannelID, *lnwallet.LightningChannel,
|
||||
]{},
|
||||
newActiveChannel: make(chan *newChannelMsg, 1),
|
||||
newPendingChannel: make(chan *newChannelMsg, 1),
|
||||
newActiveChannel: make(chan *newChannelMsg, 1),
|
||||
newPendingChannel: make(chan *newChannelMsg, 1),
|
||||
removePendingChannel: make(chan *newChannelMsg),
|
||||
|
||||
activeMsgStreams: make(map[lnwire.ChannelID]*msgStream),
|
||||
activeChanCloses: make(map[lnwire.ChannelID]*chancloser.ChanCloser),
|
||||
|
|
Loading…
Add table
Reference in a new issue