lbry-sdk/lbrynet/wallet/certificate.py

6 lines
147 B
Python
Raw Normal View History

2018-07-12 05:19:17 +02:00
from collections import namedtuple
class Certificate(namedtuple('Certificate', ('txhash', 'nout', 'claim_id', 'name', 'private_key'))):
pass