Merge pull request #514 from lbryio/fix-compare-outpoint

Add string comparison to ClaimOutpoint
This commit is contained in:
Jack Robison 2017-03-07 20:36:44 -05:00 committed by GitHub
commit 74cf14df48
2 changed files with 3 additions and 1 deletions

View file

@ -19,7 +19,7 @@ at anytime.
*
### Fixed
*
* Added string comparison to ClaimOutpoint (needed to look things up by outpoint)
*
*

View file

@ -51,6 +51,8 @@ class ClaimOutpoint(dict):
return (self['txid'], self['nout']) == (compare['txid'], compare['nOut'])
elif 'nout' in compare:
return (self['txid'], self['nout']) == (compare['txid'], compare['nout'])
elif type(compare) in [str, unicode]:
return compare == self.__repr__()
else:
raise TypeError('cannot compare {}'.format(type(compare)))