aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2017-06-17 07:46:13 +0800
committerGitHub <noreply@github.com>2017-06-17 07:46:13 +0800
commitac728189e15b9963ab8e3bd03847e4ca2b3043fb (patch)
treedabfd728e64ded6fcea6b7c2fcaa4ac7c726e591 /app
parent9c2ead3d528046e4a6eed5bc45e82c972000354d (diff)
parent42f3ccd9dc91dde7c82aecaf2eb22625a9ef2172 (diff)
downloadtangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar.gz
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar.bz2
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar.lz
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar.xz
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.tar.zst
tangerine-wallet-browser-ac728189e15b9963ab8e3bd03847e4ca2b3043fb.zip
Merge branch 'master' into i1567-FixInaccurateError
Diffstat (limited to 'app')
-rw-r--r--app/scripts/controllers/transactions.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js
index 042d8e66d..d9d9849b1 100644
--- a/app/scripts/controllers/transactions.js
+++ b/app/scripts/controllers/transactions.js
@@ -24,10 +24,9 @@ module.exports = class TransactionController extends EventEmitter {
this.blockTracker = opts.blockTracker
this.query = opts.ethQuery
this.txProviderUtils = new TxProviderUtil(this.query)
- this.blockTracker.on('block', this.checkForTxInBlock.bind(this))
- // provider-engine only exploses the 'block' event, not 'latest' for 'sync'
- this.provider._blockTracker.on('sync', this.queryPendingTxs.bind(this))
+ this.blockTracker.on('rawBlock', this.checkForTxInBlock.bind(this))
this.blockTracker.on('latest', this.resubmitPendingTxs.bind(this))
+ this.blockTracker.on('sync', this.queryPendingTxs.bind(this))
this.signEthTx = opts.signTransaction
this.nonceLock = Semaphore(1)
this.ethStore = opts.ethStore