From 490de0d8ceffe7ff0a8d730deaac227b74bb66ac Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 4 Mar 2015 18:57:28 +0100 Subject: [PATCH] fix password bug with xprv wallet --- lib/wallet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/wallet.py b/lib/wallet.py index 577f4c44..55231c92 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1357,6 +1357,8 @@ class BIP32_Simple_Wallet(BIP32_Wallet): self.add_master_private_key(self.root_name, xprv, password) self.add_master_public_key(self.root_name, xpub) self.add_account('0', account) + self.use_encryption = (password != None) + self.storage.put('use_encryption', self.use_encryption,True) def create_xpub_wallet(self, xpub): account = BIP32_Account({'xpub':xpub})