mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-02-08 08:04:23 +01:00
peer: don't pass bool to SubscribeChannelEvents
This commit is contained in:
4
peer.go
4
peer.go
@@ -403,7 +403,7 @@ func (p *peer) loadActiveChannels(chans []*channeldb.OpenChannel) error {
|
||||
// necessary to properly route multi-hop payments, and forward
|
||||
// new payments triggered by RPC clients.
|
||||
chainEvents, err := p.server.chainArb.SubscribeChannelEvents(
|
||||
*chanPoint, false,
|
||||
*chanPoint,
|
||||
)
|
||||
if err != nil {
|
||||
lnChan.Stop()
|
||||
@@ -1379,7 +1379,7 @@ out:
|
||||
continue
|
||||
}
|
||||
chainEvents, err := p.server.chainArb.SubscribeChannelEvents(
|
||||
*chanPoint, false,
|
||||
*chanPoint,
|
||||
)
|
||||
if err != nil {
|
||||
peerLog.Errorf("unable to subscribe to chain "+
|
||||
|
||||
Reference in New Issue
Block a user