forked from LBRYCommunity/lbry-sdk
fix lookup helper by not calling hexlify twice
This commit is contained in:
parent
44bd0ae847
commit
5ec696fbfd
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ def get_certificate_lookup(tx_or_hash, nout):
|
|||
if isinstance(tx_or_hash, Transaction):
|
||||
return '{}:{}'.format(tx_or_hash.id, nout)
|
||||
else:
|
||||
return '{}:{}'.format(hexlify(tx_or_hash[::-1]).decode(), nout)
|
||||
return '{}:{}'.format(tx_or_hash, nout)
|
||||
|
||||
|
||||
class Account(BaseAccount):
|
||||
|
|
Loading…
Reference in a new issue