From 508f5d2ea7a0c83eeb35bfae08a514c7e23fd884 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 28 Apr 2022 15:55:20 -0300 Subject: simplify alarm and check webRequest without using 'in' --- packages/taler-wallet-core/src/wallet.ts | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'packages/taler-wallet-core') diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index 579710d4e..96722aefb 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -326,27 +326,6 @@ export interface RetryLoopOpts { stopWhenDone?: boolean; } -/** - * This iteration hint will keep incrementing while the taskLoop iteration. - * If the hint does not match the current iteration it means that another - * promises is also working or has done some work before. - */ -let iterationHint = 0 -function thereIsAnotherPromiseWorking(iteration: number): boolean { - if (iterationHint > iteration) { - logger.trace(`some other promise is or has done some progress`); - iterationHint = iteration; - //we know that another promise did some work but don't know if still active - //so we take ownership and do work - } else if (iterationHint < iteration) { - //another promise take ownership that means that our time has come to an end - return true - } - // increment the hint to match the next loop - iterationHint++ - return false -} - /** * Main retry loop of the wallet. * @@ -357,10 +336,6 @@ async function runTaskLoop( opts: RetryLoopOpts = {}, ): Promise { for (let iteration = 0; !ws.stopped; iteration++) { - if (thereIsAnotherPromiseWorking(iteration)) { - logger.trace(`another promise is working, we just need one`); - return; - } const pending = await getPendingOperations(ws); logger.trace(`pending operations: ${j2s(pending)}`); let numGivingLiveness = 0; -- cgit v1.2.3