From 44bd0ae8477cf58afd02ee145883c1f77f29962f Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Sun, 15 Jul 2018 20:44:44 -0300 Subject: [PATCH] fix another forgotten claim id nbo conversion --- lbrynet/daemon/Daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/daemon/Daemon.py b/lbrynet/daemon/Daemon.py index dca9a0081..186dc9757 100644 --- a/lbrynet/daemon/Daemon.py +++ b/lbrynet/daemon/Daemon.py @@ -1604,7 +1604,7 @@ class Daemon(AuthJSONRPCServer): "nout": 0, "tx": hexlify(tx.raw), "fee": str(Decimal(tx.fee) / COIN), - "claim_id": hexlify(tx.get_claim_id(0)), + "claim_id": hexlify(tx.get_claim_id(0)[::-1]), "value": hexlify(script.values['claim']), "claim_address": self.ledger.hash160_to_address(script.values['pubkey_hash']) }