mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
get_pubkeys is called incorrectly in get_pubkey_from_xpub()
This commit is contained in:
parent
156825fe57
commit
950dc2c685
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue