diff --git a/lbrynet/wallet/account.py b/lbrynet/wallet/account.py index ba0765cf9..50f806ab7 100644 --- a/lbrynet/wallet/account.py +++ b/lbrynet/wallet/account.py @@ -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):