Fix bug for increasing gas by 20 percent.

feature/default_network_editable
Kevin Serrano 8 years ago
parent 14a833f5c0
commit b6b4be61d9
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4
  1. 1
      CHANGELOG.md
  2. 2
      app/scripts/lib/idStore.js
  3. 1
      app/scripts/metamask-controller.js

@ -1,6 +1,7 @@
# Changelog
## Current Master
- Fix bug where 20% of gas estimate was not being added properly.
## 2.13.7 2016-11-8

@ -262,6 +262,8 @@ 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()
})
}

@ -215,7 +215,6 @@ module.exports = class MetamaskController {
let err = this.enforceTxValidations(txParams)
if (err) return onTxDoneCb(err)
idStore.addUnconfirmedTransaction(txParams, onTxDoneCb, (err, txData) => {
if (err) return onTxDoneCb(err)
this.sendUpdate()

Loading…
Cancel
Save