From 5ec696fbfdc63d0d1e420690b2eaf385a9c9d1e5 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Sun, 15 Jul 2018 21:53:18 -0300 Subject: [PATCH] fix lookup helper by not calling hexlify twice --- lbrynet/wallet/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):