aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-11-10 08:38:28 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-11-10 08:38:28 +0800
commite2b2083df03b3bd808193ed38536d07ba155ff58 (patch)
tree961cea67ce555a778d13f2acd789f05109fe0c84 /app/scripts/lib
parentb6b4be61d9f01f309b8f4ce708fa1220f84a5d8f (diff)
downloadtangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar.gz
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar.bz2
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar.lz
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar.xz
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.tar.zst
tangerine-wallet-browser-e2b2083df03b3bd808193ed38536d07ba155ff58.zip
remove gas field, due to alias redundancy.
Diffstat (limited to 'app/scripts/lib')
-rw-r--r--app/scripts/lib/idStore.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index 1d66ee368..dd895a6c0 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -262,7 +262,6 @@ IdentityStore.prototype.addUnconfirmedTransaction = function (txParams, onTxDone
query.estimateGas(txParams, function(err, result){
if (err) return cb(err)
txData.estimatedGas = self.addGasBuffer(result)
- txData.txParams.gas = txData.estimatedGas
txData.txParams.gasLimit = txData.estimatedGas
cb()
})