remove unused property

This commit is contained in:
Jack Robison 2019-04-24 13:24:11 -04:00
parent 1ffb99f9f9
commit 056a629e87
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -54,10 +54,6 @@ class StoredStreamClaim:
def nout(self) -> typing.Optional[int]:
return None if not self.outpoint else int(self.outpoint.split(":")[1])
@property
def metadata(self) -> typing.Optional[typing.Dict]:
return None if not self.claim else self.claim.claim_dict['stream']['metadata']
def as_dict(self) -> typing.Dict:
return {
"name": self.claim_name,