fix bug with storage.encrypt

This commit is contained in:
ThomasV 2017-03-09 10:55:30 +01:00
parent 8fabd1245d
commit a159cc3a06
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ class WalletStorage(PrintError):
def decrypt(self, password):
ec_key = self.get_key(password)
s = zlib.decompress(ec_key.decrypt_message(self.raw)) if self.raw else None
self.pubkey = ec_key.get_public_key()
self.load_data(s)
def set_password(self, password, encrypt):