From 76376f0d333578fe29e5a8ae377989e6b9ff50f7 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 22 Mar 2020 00:24:38 -0400 Subject: [PATCH] lint --- lbry/extras/daemon/daemon.py | 2 +- lbry/wallet/ledger.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index 1220092d7..9249c7a8f 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -934,7 +934,7 @@ class Daemon(metaclass=JSONRPCServerType): Options: --urls= : (str, list) one or more urls to resolve --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 diff --git a/lbry/wallet/ledger.py b/lbry/wallet/ledger.py index 12d202254..c99d7f5ec 100644 --- a/lbry/wallet/ledger.py +++ b/lbry/wallet/ledger.py @@ -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 = []