From e2b2083df03b3bd808193ed38536d07ba155ff58 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 9 Nov 2016 16:38:28 -0800 Subject: remove gas field, due to alias redundancy. --- app/scripts/lib/idStore.js | 1 - 1 file changed, 1 deletion(-) (limited to 'app/scripts/lib') 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() }) -- cgit