summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-06-02 16:03:07 +0200
committerFlorian Dold <florian@dold.me>2023-06-02 16:03:07 +0200
commitb1ce901df2e0c431f41e34e3e1bd88da45d7b254 (patch)
treeec9529c1c315b75521ac0918d5fa5e95f402175d /packages/taler-wallet-core/src
parent1ee9ef80bddcc91a8e542ffc44cd23e056e751d4 (diff)
downloadwallet-core-b1ce901df2e0c431f41e34e3e1bd88da45d7b254.tar.gz
wallet-core-b1ce901df2e0c431f41e34e3e1bd88da45d7b254.tar.bz2
wallet-core-b1ce901df2e0c431f41e34e3e1bd88da45d7b254.zip
wallet-core: remove waiting-for-retry and some other notifications that we don't use
Diffstat (limited to 'packages/taler-wallet-core/src')
-rw-r--r--packages/taler-wallet-core/src/wallet.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts
index 953353164..df48c0e19 100644
--- a/packages/taler-wallet-core/src/wallet.ts
+++ b/packages/taler-wallet-core/src/wallet.ts
@@ -436,12 +436,6 @@ async function runTaskLoop(
);
logger.trace(`waiting for at most ${dt.d_ms} ms`);
const timeout = ws.timerGroup.resolveAfter(dt);
- ws.notify({
- type: NotificationType.WaitingForRetry,
- numGivingLiveness,
- numDue,
- numPending: pending.pendingOperations.length,
- });
// Wait until either the timeout, or we are notified (via the latch)
// that more work might be available.
await Promise.race([timeout, ws.workAvailable.wait()]);