mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-29 16:31:29 +00:00
fix unresolved variable
This commit is contained in:
parent
6fda3733e4
commit
cbc35d96c8
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ class Transaction:
|
||||||
pkh = bh2u(bitcoin.hash_160(bfh(pubkey)))
|
pkh = bh2u(bitcoin.hash_160(bfh(pubkey)))
|
||||||
return '76a9' + push_script(pkh) + '88ac'
|
return '76a9' + push_script(pkh) + '88ac'
|
||||||
else:
|
else:
|
||||||
raise TypeError('Unknown txin type', _type)
|
raise TypeError('Unknown txin type', txin['type'])
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def serialize_outpoint(self, txin):
|
def serialize_outpoint(self, txin):
|
||||||
|
|
Loading…
Add table
Reference in a new issue