1
0

add file selector and password dialog to wizard (fix #1730)

This commit is contained in:
ThomasV
2017-03-05 13:30:57 +01:00
parent 83e925c0cd
commit 45f25586ef
4 changed files with 113 additions and 41 deletions

View File

@@ -228,6 +228,9 @@ class Daemon(DaemonThread):
path = wallet.storage.path
self.wallets[path] = wallet
def get_wallet(self, path):
return self.wallets.get(path)
def stop_wallet(self, path):
wallet = self.wallets.pop(path)
wallet.stop_threads()