mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
minor fix
This commit is contained in:
parent
16f36ee6e2
commit
c5636be03a
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ def parse_scriptSig(d, bytes):
|
||||||
return
|
return
|
||||||
|
|
||||||
d['x_pubkeys'] = x_pubkeys
|
d['x_pubkeys'] = x_pubkeys
|
||||||
pubkeys = map(parse_xpub, x_pubkeys)
|
pubkeys = map(lambda x: parse_xpub(x)[0], x_pubkeys)
|
||||||
d['pubkeys'] = pubkeys
|
d['pubkeys'] = pubkeys
|
||||||
redeemScript = Transaction.multisig_script(pubkeys,2)
|
redeemScript = Transaction.multisig_script(pubkeys,2)
|
||||||
d['redeemScript'] = redeemScript
|
d['redeemScript'] = redeemScript
|
||||||
|
|
Loading…
Add table
Reference in a new issue