Merge pull request #647 from lbryio/fix_claimshow

allow claim_show to be specified without name
This commit is contained in:
Umpei Kay Kurokawa 2017-05-29 12:55:53 -04:00 committed by GitHub
commit 12fc722712
2 changed files with 2 additions and 1 deletions

View file

@ -19,6 +19,7 @@ at anytime.
### Fixed ### Fixed
* *
* *
* Allow claim_show to be used without specifying name
### Deprecated ### Deprecated
* *

View file

@ -1370,7 +1370,7 @@ class Daemon(AuthJSONRPCServer):
return self.jsonrpc_claim_show(**kwargs) return self.jsonrpc_claim_show(**kwargs)
@defer.inlineCallbacks @defer.inlineCallbacks
def jsonrpc_claim_show(self, name, txid=None, nout=None, claim_id=None): def jsonrpc_claim_show(self, name=None, txid=None, nout=None, claim_id=None):
""" """
Resolve claim info from a LBRY name Resolve claim info from a LBRY name