use guarded stop methods in orchstr8/node.py

This commit is contained in:
Lex Berezhny 2019-01-13 11:44:32 -05:00
parent 3a8e1cd4a5
commit ed32d17936

View file

@ -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: