From 87089b8e832b8ce9bc7102fe120c6bedd5572c60 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 21 Mar 2020 18:48:06 -0400 Subject: [PATCH] fix support test --- lbry/extras/daemon/daemon.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index e8ff30a6f..cb3fbf2d9 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -3947,9 +3947,6 @@ class Daemon(metaclass=JSONRPCServerType): kwargs['unspent'] = True if tips is True: kwargs['is_not_my_input'] = True - kwargs['is_my_output'] = True - else: - kwargs['is_my_input_or_output'] = True return self.jsonrpc_txo_list(*args, **kwargs) @requires(WALLET_COMPONENT)