taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 5605dafe89f26c4d5b99b04df4f3c958a6a2d5fc
parent 39b0be2de04d082b63d1ab24be534df5d20ac214
Author: Florian Dold <florian@dold.me>
Date:   Sat, 18 Jul 2026 16:39:44 +0200

do not submit trailing deposit batch when empty

Diffstat:
Mpackages/taler-wallet-core/src/deposits.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/deposits.ts b/packages/taler-wallet-core/src/deposits.ts @@ -1880,7 +1880,7 @@ async function processDepositGroupPendingDeposit( batchArgs.coinIndexes = []; } } - if (batchArgs.coinIndexes.length >= 0) { + if (batchArgs.coinIndexes.length > 0) { const r = await submitDepositBatch(wex, batchArgs); if (r != null) { return r;