Merge pull request #3032 from SomberNight/non_sw_txin_witness

fix: witness for non-segwit txins
This commit is contained in:
ThomasV 2017-10-12 22:38:01 +02:00 committed by GitHub
commit 633d44f268
1 changed files with 2 additions and 0 deletions

View File

@ -637,6 +637,8 @@ class Transaction:
@classmethod
def serialize_witness(self, txin):
if not self.is_segwit_input(txin):
return '00'
pubkeys, sig_list = self.get_siglist(txin)
if txin['type'] in ['p2wpkh', 'p2wpkh-p2sh']:
witness = var_int(2) + push_script(sig_list[0]) + push_script(pubkeys[0])