From a107b66854a736a2809fba2a490039b9920b92d5 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 4 Jan 2017 14:14:45 -0800 Subject: [PATCH] Caught typo --- app/scripts/lib/eth-store.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/eth-store.js index cca6f7d5d..3b5501095 100644 --- a/app/scripts/lib/eth-store.js +++ b/app/scripts/lib/eth-store.js @@ -79,7 +79,7 @@ EthereumStore.prototype._didUpdate = function () { EthereumStore.prototype._updateForBlock = function (block) { const self = this - var blockNumber = '0x'+block.number.toString('hex') + var blockNumber = '0x' + block.number.toString('hex') self.currentBlockNumber = blockNumber async.parallel([ self._updateAccounts.bind(self), @@ -134,7 +134,8 @@ EthereumStore.prototype._updateTransaction = function (block, txHash, cb) { var transactionsState = self._currentState.transactions self._query.getTransaction(txHash, function (err, result) { if (err) return cb(err) - // only populate if the entry is still present if (transactionsState[txHash]) { + // only populate if the entry is still present + if (transactionsState[txHash]) { transactionsState[txHash] = result self._didUpdate() }