allow claim_show to be specified without name
This commit is contained in:
parent
8a2a8ce05f
commit
ed3896f3e9
2 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ at anytime.
|
|||
### Fixed
|
||||
*
|
||||
*
|
||||
* Allow claim_show to be used without specifying name
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
|
|
|
@ -1370,7 +1370,7 @@ class Daemon(AuthJSONRPCServer):
|
|||
return self.jsonrpc_claim_show(**kwargs)
|
||||
|
||||
@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
|
||||
|
|
Loading…
Reference in a new issue