daemon returns true only if the wallet is loaded

This commit is contained in:
Yuki Inoue 2018-02-27 18:43:00 +09:00
parent 52d41a4339
commit 6687c1b336
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class Daemon(DaemonThread):
path = config.get_wallet_path()
wallet = self.load_wallet(path, config.get('password'))
self.cmd_runner.wallet = wallet
response = True
response = wallet is not None
elif sub == 'close_wallet':
path = config.get_wallet_path()
if path in self.wallets: