diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-26 23:42:29 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-26 23:42:43 +0800 |
commit | 7807a4f738ac6d8d7a1f15decb5320502a19a48c (patch) | |
tree | 922dd4e82b9949aa76b00f700b01e39c675e4359 /dist/ethereum.js | |
parent | e5d294df327d817bbe66764fba596e77d2a66b7b (diff) | |
download | dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar.gz dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar.bz2 dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar.lz dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar.xz dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.tar.zst dexon-7807a4f738ac6d8d7a1f15decb5320502a19a48c.zip |
polling every second
Diffstat (limited to 'dist/ethereum.js')
-rw-r--r-- | dist/ethereum.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/ethereum.js b/dist/ethereum.js index 5e15939dd..f6c0e0d1c 100644 --- a/dist/ethereum.js +++ b/dist/ethereum.js @@ -726,7 +726,7 @@ var ProviderManager = function() { data.callback(result.result); }); } - setTimeout(poll, 12000); + setTimeout(poll, 1000); }; poll(); }; |