tfix: get_master_public_key - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 1662a9e9c5ea8668c7889fc0b47903c8bea2fa55 DIR parent 40bd5e9c5f3a6b3a26043869a2f69af52091ca99 HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 25 Apr 2014 10:39:07 +0200 fix: get_master_public_key Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -1739,7 +1739,7 @@ class OldWallet(NewWallet): return {'Main Account':mpk} def create_accounts(self, password): - mpk = self.get_master_public_key() + mpk = self.storage.get("master_public_key") self.create_account(mpk) def create_account(self, mpk):