test: allow lightningNetworkWatcher to gracefully exit when ntfn pending
This commit is contained in:
parent
994a3c10ca
commit
2f08337ccd
@ -397,7 +397,11 @@ func (l *lightningNode) lightningNetworkWatcher() {
|
||||
panic(fmt.Errorf("unable read update ntfn: %v", err))
|
||||
}
|
||||
|
||||
graphUpdates <- update
|
||||
select {
|
||||
case graphUpdates <- update:
|
||||
case <-l.quit:
|
||||
return
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user