get_pubkeys is called incorrectly in get_pubkey_from_xpub()

This commit is contained in:
ukurokawa 2015-04-02 15:03:48 -04:00
parent 156825fe57
commit 950dc2c685
1 changed files with 1 additions and 1 deletions

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):