forked from LBRYCommunity/lbry-sdk
use guarded stop methods in orchstr8/node.py
This commit is contained in:
parent
3a8e1cd4a5
commit
ed32d17936
1 changed files with 3 additions and 3 deletions
|
@ -122,9 +122,9 @@ class Conductor:
|
||||||
|
|
||||||
async def stop(self):
|
async def stop(self):
|
||||||
all_the_stops = [
|
all_the_stops = [
|
||||||
self.wallet_node.stop,
|
self.stop_wallet,
|
||||||
self.spv_node.stop,
|
self.stop_spv,
|
||||||
self.blockchain_node.stop
|
self.stop_blockchain
|
||||||
]
|
]
|
||||||
for stop in all_the_stops:
|
for stop in all_the_stops:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Reference in a new issue