From ed32d17936acfcf848f287cce3adf17683cefbcb Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 13 Jan 2019 11:44:32 -0500 Subject: [PATCH] use guarded stop methods in orchstr8/node.py --- torba/orchstr8/node.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/torba/orchstr8/node.py b/torba/orchstr8/node.py index 7e5b834a1..f263881a9 100644 --- a/torba/orchstr8/node.py +++ b/torba/orchstr8/node.py @@ -122,9 +122,9 @@ class Conductor: async def stop(self): all_the_stops = [ - self.wallet_node.stop, - self.spv_node.stop, - self.blockchain_node.stop + self.stop_wallet, + self.stop_spv, + self.stop_blockchain ] for stop in all_the_stops: try: