mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-29 07:00:55 +02:00
channelnotifier+discover+invoices: return error in Stop functions
In order to be consistent with other sub systems an error is now returned from the Stop functions. This also allows writing a generic cleanup mechanism to stop all sub systems in case of a failure.
This commit is contained in:
@@ -49,11 +49,13 @@ func (p *PeerNotifier) Start() error {
|
||||
}
|
||||
|
||||
// Stop signals the notifier for a graceful shutdown.
|
||||
func (p *PeerNotifier) Stop() {
|
||||
func (p *PeerNotifier) Stop() error {
|
||||
var err error
|
||||
p.stopped.Do(func() {
|
||||
log.Info("Stopping PeerNotifier")
|
||||
p.ntfnServer.Stop()
|
||||
err = p.ntfnServer.Stop()
|
||||
})
|
||||
return err
|
||||
}
|
||||
|
||||
// SubscribePeerEvents returns a subscribe.Client that will receive updates
|
||||
|
Reference in New Issue
Block a user