Browse Source

fix unresolved variable

seed_v14
SomberNight 7 years ago
parent
commit
cbc35d96c8
  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