Browse Source

fix: check if wallet has master_private_keys

283
ThomasV 11 years ago
parent
commit
a195ca5c07
  1. 1
      lib/wallet.py

1
lib/wallet.py

@ -816,6 +816,7 @@ class Abstract_Wallet(object):
imported_account.update_password(old_password, new_password)
self.save_accounts()
if hasattr(self, 'master_private_keys'):
for k, v in self.master_private_keys.items():
b = pw_decode(v, old_password)
c = pw_encode(b, new_password)

Loading…
Cancel
Save