aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-08-05 15:29:10 +0800
committerGitHub <noreply@github.com>2017-08-05 15:29:10 +0800
commita456baea8be1843f1f2a39af3f2b88820d0b8249 (patch)
treed30c5603bbca3e045e39c00f08749dc27a7e1fb9 /app
parent3f5b82f7efa713d4927856187108a0e61f5cfb75 (diff)
parent2ba5737728d2539fc3bc9015e440f37341219cdc (diff)
downloadtangerine-wallet-browser-a456baea8be1843f1f2a39af3f2b88820d0b8249.tar.gz
tangerine-wallet-browser-a456baea8be1843f1f2a39af3f2b88820d0b8249.tar.zst
tangerine-wallet-browser-a456baea8be1843f1f2a39af3f2b88820d0b8249.zip
Merge branch 'master' into NewUI
Diffstat (limited to 'app')
-rw-r--r--app/manifest.json2
-rw-r--r--app/scripts/controllers/blacklist.js5
2 files changed, 4 insertions, 3 deletions
diff --git a/app/manifest.json b/app/manifest.json
index d5e1937fa..3b9194eb9 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "MetaMask",
"short_name": "Metamask",
- "version": "3.9.4",
+ "version": "3.9.5",
"manifest_version": 2,
"author": "https://metamask.io",
"description": "Ethereum Browser Extension",
diff --git a/app/scripts/controllers/blacklist.js b/app/scripts/controllers/blacklist.js
index 7e01fa386..dd671943f 100644
--- a/app/scripts/controllers/blacklist.js
+++ b/app/scripts/controllers/blacklist.js
@@ -4,8 +4,8 @@ const PhishingDetector = require('eth-phishing-detect/src/detector')
// compute phishing lists
const PHISHING_DETECTION_CONFIG = require('eth-phishing-detect/src/config.json')
-// every ten minutes
-const POLLING_INTERVAL = 10 * 60 * 1000
+// every four minutes
+const POLLING_INTERVAL = 4 * 60 * 1000
class BlacklistController {
@@ -41,6 +41,7 @@ class BlacklistController {
scheduleUpdates () {
if (this._phishingUpdateIntervalRef) return
+ this.updatePhishingList()
this._phishingUpdateIntervalRef = setInterval(() => {
this.updatePhishingList()
}, POLLING_INTERVAL)