Browse Source

Merge pull request #2865 from SomberNight/get_preimage_script

fix unresolved variable
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
dd2b7e4d89
  1. 2
      lib/transaction.py

2
lib/transaction.py

@ -667,7 +667,7 @@ class Transaction:
pkh = bh2u(bitcoin.hash_160(bfh(pubkey)))
return '76a9' + push_script(pkh) + '88ac'
else:
raise TypeError('Unknown txin type', _type)
raise TypeError('Unknown txin type', txin['type'])
@classmethod
def serialize_outpoint(self, txin):

Loading…
Cancel
Save