This commit is contained in:
Lex Berezhny 2020-03-22 00:24:38 -04:00
parent 9749da46ae
commit 76376f0d33
2 changed files with 2 additions and 3 deletions

View file

@ -934,7 +934,7 @@ class Daemon(metaclass=JSONRPCServerType):
Options:
--urls=<urls> : (str, list) one or more urls to resolve
--wallet_id=<wallet_id> : (str) wallet to check for claim purchase reciepts
--include_purchase_receipt : (bool) lookup and include a receipt if this wallet
--include_purchase_receipt : (bool) lookup and include a receipt if this wallet
has purchased the claim being resolved
--include_is_my_output : (bool) lookup and include a boolean indicating
if claim being resolved is yours

View file

@ -651,8 +651,7 @@ class Ledger(metaclass=LedgerRegistry):
include_purchase_receipt=False,
include_is_my_output=False,
include_my_supports=False,
include_my_tips=False
) -> Tuple[List[Output], dict, int, int]:
include_my_tips=False) -> Tuple[List[Output], dict, int, int]:
encoded_outputs = await query
outputs = Outputs.from_base64(encoded_outputs or b'') # TODO: why is the server returning None?
txs = []