diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-11-16 05:44:22 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-11-16 05:44:22 +0800 |
commit | 585284cb88ec18515b246555a19c745b5bf8de84 (patch) | |
tree | d1f82ec11056c384c7f911bcbf7a9287cea0b8d7 | |
parent | 2ae62a45735d95cdb47e32d7d7e6b669241b73b4 (diff) | |
download | tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar.gz tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar.bz2 tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar.lz tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar.xz tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.tar.zst tangerine-wallet-browser-585284cb88ec18515b246555a19c745b5bf8de84.zip |
Lints.
-rw-r--r-- | app/scripts/lib/idStore.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index eb625987f..d11c38be1 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -261,7 +261,7 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone // 1 billion gas for estimation var gasLimit = '0x3b9aca00' estimationParams.gas = gasLimit - query.estimateGas(estimationParams, function(err, result){ + query.estimateGas(estimationParams, function (err, result) { if (err) return cb(err.message || err) if (result === estimationParams.gas) { txData.simulationFails = true |