fix #3197: parse pubkey

This commit is contained in:
ThomasV 2017-11-03 15:31:20 +01:00
parent 036d5746a3
commit 358068a0c1
1 changed files with 1 additions and 1 deletions

View File

@ -446,7 +446,7 @@ def parse_witness(vds, txin):
else:
txin['num_sig'] = 1
txin['x_pubkeys'] = [w[1]]
txin['pubkeys'] = [w[1]]
txin['pubkeys'] = [safe_parse_pubkey(w[1])]
txin['signatures'] = parse_sig([w[0]])
def parse_output(vds, i):