mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-23 09:17:23 +00:00
9 lines
142 B
Python
9 lines
142 B
Python
from binascii import hexlify
|
|
|
|
|
|
def claim_id(claim_hash):
|
|
return hexlify(claim_hash[::-1]).decode()
|
|
|
|
|
|
class BaseError(Exception):
|
|
pass
|