peer: don't pass bool to SubscribeChannelEvents
This commit is contained in:
parent
f06797ab00
commit
08f1a3689d
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 "+
|
||||
|
Loading…
Reference in New Issue
Block a user