aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 63cd597ea..71dc1754b 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -293,6 +293,10 @@ function setTimeout(f: any, t: number) {
return chrome.extension.getBackgroundPage().setTimeout(f, t);
}
+function setInterval(f: any, t: number) {
+ return chrome.extension.getBackgroundPage().setInterval(f, t);
+}
+
function isWithdrawableDenom(d: DenominationRecord) {
const now_sec = (new Date).getTime() / 1000;
@@ -521,6 +525,8 @@ export class Wallet {
this.fillDefaults();
this.resumePendingFromDb();
+
+ setInterval(() => this.updateExchanges(), 1000 * 60 * 15);
}
private async fillDefaults() {