diff options
author | kumavis <aaron@kumavis.me> | 2018-05-29 06:54:47 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-05-29 06:54:47 +0800 |
commit | 1b3fedd10d6209fe4c7dfcdc9e90a23c3972bf16 (patch) | |
tree | e6a6160feb3c16bcfbc9ca84d67380e979f78159 /app/scripts/controllers | |
parent | 5be154ea2035810462ff0e7051e537870bfc1afb (diff) | |
download | tangerine-wallet-browser-1b3fedd10d6209fe4c7dfcdc9e90a23c3972bf16.tar.gz tangerine-wallet-browser-1b3fedd10d6209fe4c7dfcdc9e90a23c3972bf16.tar.zst tangerine-wallet-browser-1b3fedd10d6209fe4c7dfcdc9e90a23c3972bf16.zip |
controllers - transaction - pending-tx-tracker - lint fix
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r-- | app/scripts/controllers/transactions/pending-tx-tracker.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/controllers/transactions/pending-tx-tracker.js b/app/scripts/controllers/transactions/pending-tx-tracker.js index e981e2991..68f016d79 100644 --- a/app/scripts/controllers/transactions/pending-tx-tracker.js +++ b/app/scripts/controllers/transactions/pending-tx-tracker.js @@ -1,7 +1,7 @@ const EventEmitter = require('events') const log = require('loglevel') const EthQuery = require('ethjs-query') -const timeout = (duration) => new Promise(resolve => setTimeout(resolve, duration)) + /** Event emitter utility class for tracking the transactions as they<br> |