From ebf60843fabd743cbf821611fc9343e1d4a323b7 Mon Sep 17 00:00:00 2001 From: kumavis Date: Mon, 8 Feb 2016 17:13:30 -0800 Subject: sync - slow account polling to 4s --- app/scripts/inpage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- cgit