tfix oldwallet 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 b1ecb6110519e5c7068211ad389acbec3511c94d DIR parent 65fd4f45e3d6f4eecf2af8886e4f0c0c2a9e9b0d HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 5 Sep 2014 17:30:19 +0200 fix oldwallet 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@@ -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