aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src
diff options
context:
space:
mode:
Diffstat (limited to 'mascara/src')
-rw-r--r--mascara/src/proxy.js2
-rw-r--r--mascara/src/ui.js8
2 files changed, 5 insertions, 5 deletions
diff --git a/mascara/src/proxy.js b/mascara/src/proxy.js
index 5ead75f94..2316f4e18 100644
--- a/mascara/src/proxy.js
+++ b/mascara/src/proxy.js
@@ -3,7 +3,7 @@ const SWcontroller = require('client-sw-ready-event/lib/sw-client.js')
const SwStream = require('sw-stream/lib/sw-stream.js')
const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js')
-let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000
+let intervalDelay = Math.floor(Math.random() * (20000 - 1000)) + 1000
const background = new SWcontroller({
fileName: '/background.js',
letBeIdle: false,
diff --git a/mascara/src/ui.js b/mascara/src/ui.js
index 37bb043b8..4948a1727 100644
--- a/mascara/src/ui.js
+++ b/mascara/src/ui.js
@@ -18,12 +18,13 @@ const container = document.getElementById('app-content')
var name = 'popup'
window.METAMASK_UI_TYPE = name
-let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000
+let intervalDelay = Math.floor(Math.random() * (30000 - 1000)) + 1000
const background = new SWcontroller({
fileName: '/background.js',
- letBeIdel: false,
- intervalDelay,
+ letBeIdle: false,
+ // intervalDelay,
+ wakeUpInterval: 30000
})
// Setup listener for when the service worker is read
background.on('ready', (readSw) => {
@@ -39,6 +40,5 @@ background.on('ready', (readSw) => {
})
})
})
-
background.startWorker()
console.log('hello from MetaMascara ui!')