From 16d7547e034a9a0b0cb0494fc10f2e6c5238327e Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 30 Mar 2020 22:48:05 -0400 Subject: [PATCH] changed default txo_spend batch_size default to 500 from 1000 --- lbry/extras/daemon/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index 54c3f6730..927650dd8 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -4266,7 +4266,7 @@ class Daemon(metaclass=JSONRPCServerType): @requires(WALLET_COMPONENT) async def jsonrpc_txo_spend( - self, account_id=None, wallet_id=None, batch_size=1000, + self, account_id=None, wallet_id=None, batch_size=500, include_full_tx=False, preview=False, blocking=False, **kwargs): """ Spend transaction outputs, batching into multiple transactions as necessary.