daemon/wallet/network: make stop() methods async
This commit is contained in:
@@ -147,8 +147,8 @@ class LNWatcher(AddressSynchronizer):
|
||||
# status gets populated when we run
|
||||
self.channel_status = {}
|
||||
|
||||
def stop(self):
|
||||
super().stop()
|
||||
async def stop(self):
|
||||
await super().stop()
|
||||
util.unregister_callback(self.on_network_update)
|
||||
|
||||
def get_channel_status(self, outpoint):
|
||||
|
||||
Reference in New Issue
Block a user