mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-09-01 17:55:13 +00:00
fix txo_spend
This commit is contained in:
parent
f28e3bfe37
commit
962d04ae17
1 changed files with 1 additions and 1 deletions
|
@ -4333,7 +4333,7 @@ class Daemon(metaclass=JSONRPCServerType):
|
||||||
accounts = [wallet.get_account_or_error(account_id)] if account_id else wallet.accounts
|
accounts = [wallet.get_account_or_error(account_id)] if account_id else wallet.accounts
|
||||||
txos = await self.ledger.get_txos(
|
txos = await self.ledger.get_txos(
|
||||||
wallet=wallet, accounts=accounts, read_only=True,
|
wallet=wallet, accounts=accounts, read_only=True,
|
||||||
**self._constrain_txo_from_kwargs({}, is_spent=False, is_my_output=True, **kwargs)
|
**self._constrain_txo_from_kwargs({}, is_not_spent=True, is_my_output=True, **kwargs)
|
||||||
)
|
)
|
||||||
txs = []
|
txs = []
|
||||||
while txos:
|
while txos:
|
||||||
|
|
Loading…
Add table
Reference in a new issue