diff options
author | Hsuan Lee <hsuan@cobinhood.com> | 2018-11-15 11:06:31 +0800 |
---|---|---|
committer | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-10 18:52:34 +0800 |
commit | 5823f6fca838a3ce5fac6ccee87bc99461a720bc (patch) | |
tree | 5502b2a2fb7f27109a7116234d78c836c431ffb0 /app/scripts/controllers/infura.js | |
parent | cb9e5cd9ae654b4100924db48535a96925830d3d (diff) | |
download | dexon-wallet-5823f6fca838a3ce5fac6ccee87bc99461a720bc.tar.gz dexon-wallet-5823f6fca838a3ce5fac6ccee87bc99461a720bc.tar.zst dexon-wallet-5823f6fca838a3ce5fac6ccee87bc99461a720bc.zip |
Refine phishing detection
Diffstat (limited to 'app/scripts/controllers/infura.js')
-rw-r--r-- | app/scripts/controllers/infura.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/controllers/infura.js b/app/scripts/controllers/infura.js index 8f6dd837..f2d4e5a1 100644 --- a/app/scripts/controllers/infura.js +++ b/app/scripts/controllers/infura.js @@ -2,8 +2,8 @@ const ObservableStore = require('obs-store') const extend = require('xtend') const log = require('loglevel') -// every ten minutes -const POLLING_INTERVAL = 10 * 60 * 1000 +// every hour +const POLLING_INTERVAL = 60 * 60 * 1000 class InfuraController { |