fix update_pasword bug

This commit is contained in:
ThomasV 2016-10-17 06:42:53 +02:00
parent 2d1607b0c8
commit 983e152ea3
1 changed files with 2 additions and 1 deletions

View File

@ -125,7 +125,8 @@ def run_non_RPC(config):
k = keystore.from_keys(text)
else:
sys.exit("Error: Seed or key not recognized")
k.update_password(None, password)
if password:
k.update_password(None, password)
storage.put('keystore', k.dump())
storage.put('wallet_type', 'standard')
storage.put('use_encryption', bool(password))