From b1ecb6110519e5c7068211ad389acbec3511c94d Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 5 Sep 2014 17:30:19 +0200 Subject: [PATCH] fix oldwallet 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 3e16ead77..ee5bfa54f 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -1571,7 +1571,7 @@ class OldWallet(Deterministic_Wallet): if self.is_mine(addr): return True for xpub, sequence in xpub_list: - if xpub == self.master_public_key: + if xpub == self.get_master_public_key(): return True return False