mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
Merge pull request #2865 from SomberNight/get_preimage_script
fix unresolved variable
This commit is contained in:
commit
dd2b7e4d89
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