summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/refresh.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-06-25 13:27:06 +0200
committerFlorian Dold <florian@dold.me>2021-06-25 13:27:06 +0200
commit42fe57632002e8f6dbf175b4e984b2fa1013bbe9 (patch)
treebb672ac371e5c448b12bbf287f62dfff00495596 /packages/taler-wallet-core/src/operations/refresh.ts
parent3603a6866977600e9cb16f5e94488fde9cfb02a5 (diff)
downloadwallet-core-42fe57632002e8f6dbf175b4e984b2fa1013bbe9.tar.gz
wallet-core-42fe57632002e8f6dbf175b4e984b2fa1013bbe9.tar.bz2
wallet-core-42fe57632002e8f6dbf175b4e984b2fa1013bbe9.zip
implement backup scheduling, other tweaks
Diffstat (limited to 'packages/taler-wallet-core/src/operations/refresh.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/refresh.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/refresh.ts b/packages/taler-wallet-core/src/operations/refresh.ts
index cf8b4ddde..2549b1404 100644
--- a/packages/taler-wallet-core/src/operations/refresh.ts
+++ b/packages/taler-wallet-core/src/operations/refresh.ts
@@ -203,7 +203,7 @@ async function refreshCreateSession(
}
if (allDone) {
rg.timestampFinished = getTimestampNow();
- rg.retryInfo = initRetryInfo(false);
+ rg.retryInfo = initRetryInfo();
}
await tx.refreshGroups.put(rg);
});
@@ -590,7 +590,7 @@ async function refreshReveal(
}
if (allDone) {
rg.timestampFinished = getTimestampNow();
- rg.retryInfo = initRetryInfo(false);
+ rg.retryInfo = initRetryInfo();
}
for (const coin of coins) {
await tx.coins.put(coin);