certificate.py

This commit is contained in:
Lex Berezhny 2018-07-11 23:19:17 -04:00 committed by Jack Robison
parent 70a7ca95fe
commit 4a56d38782
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -0,0 +1,5 @@
from collections import namedtuple
class Certificate(namedtuple('Certificate', ('txhash', 'nout', 'claim_id', 'name', 'private_key'))):
pass