commit 490de0d8ceffe7ff0a8d730deaac227b74bb66ac
parent 464dc9ad7d8177faf8de9a182c88e52b13f16251
Author: ThomasV <thomasv@gitorious>
Date: Wed, 4 Mar 2015 18:57:28 +0100
fix password bug with xprv wallet
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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})