forked from LBRYCommunity/lbry-sdk
Merge pull request #647 from lbryio/fix_claimshow
allow claim_show to be specified without name
This commit is contained in:
commit
12fc722712
2 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ at anytime.
|
||||||
### Fixed
|
### Fixed
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
* Allow claim_show to be used without specifying name
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
*
|
*
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue