diff options
sync - slow account polling to 4s
-rw-r--r-- | app/scripts/inpage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/inpage.js b/app/scripts/inpage.js index 0837de338..6bf75084c 100644 --- a/app/scripts/inpage.js +++ b/app/scripts/inpage.js @@ -16,7 +16,7 @@ remoteProvider.pipe(pluginStream).pipe(remoteProvider) // handle accounts cache var accountsCache = [] -setInterval(populateAccountsCache, 1000) +setInterval(populateAccountsCache, 4000) function populateAccountsCache(){ remoteProvider.sendAsync(createPayload({ method: 'eth_accounts', |