From 1662a9e9c5ea8668c7889fc0b47903c8bea2fa55 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 25 Apr 2014 10:39:07 +0200 Subject: [PATCH] fix: get_master_public_key --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index 8a550faa..3cd0c9f2 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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):