Skip to content

Commit

Permalink
https://github.com/lightningnetwork/lnd/pull/8406
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Otto committed Jan 20, 2024
1 parent a46e684 commit 504f988
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions peer/brontide.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,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),
Expand Down

0 comments on commit 504f988

Please sign in to comment.