1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 03:12:42 +02:00

Fix bug where edited gas parameters did not take effect

Fixes #1407
This commit is contained in:
Dan Finlay 2017-05-16 23:33:40 -07:00
parent 6491b42266
commit 31c7daee73
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## Current Master
- Fix bug where edited gas parameters would not take effect.
- Trim currency list.
- Fix event filter bug introduced by newer versions of Geth.

View File

@ -108,7 +108,7 @@ ConfirmTxScreen.prototype.render = function () {
currentCurrency,
// Actions
buyEth: this.buyEth.bind(this, txParams.from || props.selectedAddress),
sendTransaction: this.sendTransaction.bind(this, txData),
sendTransaction: this.sendTransaction.bind(this),
cancelTransaction: this.cancelTransaction.bind(this, txData),
signMessage: this.signMessage.bind(this, txData),
signPersonalMessage: this.signPersonalMessage.bind(this, txData),