aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-05-17 14:33:40 +0800
committerDan Finlay <dan@danfinlay.com>2017-05-17 14:33:40 +0800
commit31c7daee73fa41e356d1bd5cd92186e60b252212 (patch)
tree04a87c708baa3123cc56935eaa95f220f1e08bcf
parent6491b42266b2114af72e72a46a6453dc3dd59290 (diff)
downloadtangerine-wallet-browser-31c7daee73fa41e356d1bd5cd92186e60b252212.tar.gz
tangerine-wallet-browser-31c7daee73fa41e356d1bd5cd92186e60b252212.tar.zst
tangerine-wallet-browser-31c7daee73fa41e356d1bd5cd92186e60b252212.zip
Fix bug where edited gas parameters did not take effect
Fixes #1407
-rw-r--r--CHANGELOG.md1
-rw-r--r--ui/app/conf-tx.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3653e5018..998219254 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js
index 0d7c4c1bb..008627ce6 100644
--- a/ui/app/conf-tx.js
+++ b/ui/app/conf-tx.js
@@ -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),