aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-10-13 10:35:09 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-10-14 06:10:29 +0800
commitc400f7c0f6bff13400eedcd80fdc83e572eb42a8 (patch)
tree2c7baacd4f7439488e53d412ef2daf8fde520878 /ui/app/send.js
parent229d95956bc36ec413533df00389f8c5127e050b (diff)
downloadtangerine-wallet-browser-c400f7c0f6bff13400eedcd80fdc83e572eb42a8.tar.gz
tangerine-wallet-browser-c400f7c0f6bff13400eedcd80fdc83e572eb42a8.tar.zst
tangerine-wallet-browser-c400f7c0f6bff13400eedcd80fdc83e572eb42a8.zip
Fix gasPrice range
Diffstat (limited to 'ui/app/send.js')
-rw-r--r--ui/app/send.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index d10c658e3..01c9314ce 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -319,10 +319,11 @@ SendTransactionScreen.prototype.onSubmit = function (gasPrice) {
var txParams = {
from: this.props.address,
value: '0x' + value.toString(16),
+ gasMultiplier: gasMultiplier * 0.01,
}
if (recipient) txParams.to = ethUtil.addHexPrefix(recipient)
if (txData) txParams.data = txData
- txParams.gasMultiplier = gasMultiplier * 0.01
+
this.props.dispatch(actions.signTx(txParams))
}