diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-12-02 17:35:47 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-12-02 17:35:47 +0100 |
commit | b5ee6b7b4ee506712f51e1b90e9256c4b0c0c603 (patch) | |
tree | 7d8bb4398ab52b58a5223d37e058eaea6c72f963 /src/webex | |
parent | e1369ff7e8fc02116b9c4261036f0e42e3423cf4 (diff) |
pending operations WIP
Diffstat (limited to 'src/webex')
-rw-r--r-- | src/webex/wxBackend.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webex/wxBackend.ts b/src/webex/wxBackend.ts index 2d7f963e9..752027b70 100644 --- a/src/webex/wxBackend.ts +++ b/src/webex/wxBackend.ts @@ -467,6 +467,9 @@ async function reinitWallet() { notifier, new BrowserCryptoWorkerFactory(), ); + wallet.runLoopScheduledRetries().catch((e) => { + console.log("error during wallet retry loop", e); + }); // Useful for debugging in the background page. (window as any).talerWallet = wallet; currentWallet = wallet; |