forked from LBRYCommunity/lbry-sdk
fix another forgotten claim id nbo conversion
This commit is contained in:
parent
5809ba093d
commit
44bd0ae847
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue