fix oldwallet master_public_key

This commit is contained in:
ThomasV 2014-09-05 17:30:19 +02:00
parent 65fd4f45e3
commit b1ecb61105
1 changed files with 1 additions and 1 deletions

View File

@ -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