aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-09-23 21:47:38 +0200
committerFlorian Dold <florian@dold.me>2022-09-23 21:47:38 +0200
commit2337ddab6126722b46a0ea0b6e244955a38b09df (patch)
treee814990f2ca19970561eb31a297be77f6fe36245 /packages/taler-wallet-core/src/wallet.ts
parent8d19b801538e2be842ebe2d03ca464f72bb95edb (diff)
downloadwallet-core-2337ddab6126722b46a0ea0b6e244955a38b09df.tar.gz
wallet-core-2337ddab6126722b46a0ea0b6e244955a38b09df.tar.bz2
wallet-core-2337ddab6126722b46a0ea0b6e244955a38b09df.zip
wallet-core: fix withdrawal state machine
Diffstat (limited to 'packages/taler-wallet-core/src/wallet.ts')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index 3b9a323a7..4323f68f5 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -492,6 +492,7 @@ async function runTaskLoop(
ws: InternalWalletState,
opts: RetryLoopOpts = {},
): Promise<TaskLoopResult> {
+ logger.info(`running task loop opts=${j2s(opts)}`);
let retriesExceeded = false;
for (let iteration = 0; !ws.stopped; iteration++) {
const pending = await getPendingOperations(ws);