changed default txo_spend batch_size default to 500 from 1000

This commit is contained in:
Lex Berezhny 2020-03-30 22:48:05 -04:00
parent 767112dcda
commit 16d7547e03

View file

@ -4266,7 +4266,7 @@ class Daemon(metaclass=JSONRPCServerType):
@requires(WALLET_COMPONENT) @requires(WALLET_COMPONENT)
async def jsonrpc_txo_spend( 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): include_full_tx=False, preview=False, blocking=False, **kwargs):
""" """
Spend transaction outputs, batching into multiple transactions as necessary. Spend transaction outputs, batching into multiple transactions as necessary.