1
0

Merge pull request #1127 from kaykurokawa/master

get_pubkeys is called incorrectly in get_pubkey_from_xpub()
This commit is contained in:
ThomasV
2015-04-03 08:32:17 +02:00

View File

@@ -306,7 +306,7 @@ class BIP32_Account(Account):
def get_pubkey_from_xpub(self, xpub, for_change, n):
xpubs = self.get_master_pubkeys()
i = xpubs.index(xpub)
pubkeys = self.get_pubkeys(sequence, n)
pubkeys = self.get_pubkeys(for_change, n)
return pubkeys[i]
def derive_pubkeys(self, for_change, n):