From 6484894b361e25271417b75a238e635074a50b47 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 4 Sep 2020 15:37:45 -0400 Subject: [PATCH] reduce diff --- lbry/service/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/service/api.py b/lbry/service/api.py index 7115661c2..56c4b3d26 100644 --- a/lbry/service/api.py +++ b/lbry/service/api.py @@ -2762,8 +2762,8 @@ class API: """ txo_dict, kwargs = pop_kwargs('txo_filter', txo_filter_kwargs(**txo_filter_and_pagination_kwargs)) pagination, kwargs = pop_kwargs('pagination', pagination_kwargs(**kwargs)) - wallet = self.wallets.get_or_default(kwargs.pop('wallet_id')) assert_consumed_kwargs(kwargs) + wallet = self.wallets.get_or_default(kwargs.pop('wallet_id')) accounts = wallet.accounts.get_or_all(txo_dict.pop('account_id')) constraints = { 'resolve': resolve,