forked from LBRYCommunity/lbry-sdk
6 lines
147 B
Python
6 lines
147 B
Python
|
from collections import namedtuple
|
||
|
|
||
|
|
||
|
class Certificate(namedtuple('Certificate', ('txhash', 'nout', 'claim_id', 'name', 'private_key'))):
|
||
|
pass
|