aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-10-25 03:24:19 +0800
committerGitHub <noreply@github.com>2016-10-25 03:24:19 +0800
commit85d03cc8fbc6626a6617d46f3ecd5ec1e2e5f4fa (patch)
treecf852f8113248fcd9b2feddcb4bf6b66f3f10893 /ui/app/send.js
parent82489129d5c8eda70f21e7037d428969e695b87b (diff)
parenteba37e773df54276e84d27c02a370719f670cc8b (diff)
downloadtangerine-wallet-browser-85d03cc8fbc6626a6617d46f3ecd5ec1e2e5f4fa.tar.gz
tangerine-wallet-browser-85d03cc8fbc6626a6617d46f3ecd5ec1e2e5f4fa.tar.zst
tangerine-wallet-browser-85d03cc8fbc6626a6617d46f3ecd5ec1e2e5f4fa.zip
Merge branch 'master' into i743-FixDelegateCallFlag
Diffstat (limited to 'ui/app/send.js')
-rw-r--r--ui/app/send.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index 97ed29e4a..b8af19028 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -7,6 +7,7 @@ const actions = require('./actions')
const util = require('./util')
const numericBalance = require('./util').numericBalance
const addressSummary = require('./util').addressSummary
+const isHex = require('./util').isHex
const EthBalance = require('./components/eth-balance')
const ethUtil = require('ethereumjs-util')
const RangeSlider = require('./components/range-slider')
@@ -190,7 +191,7 @@ SendTransactionScreen.prototype.render = function () {
marginBottom: '16px',
},
}, [
- 'Transactional Data (optional)',
+ 'Transaction Data (optional)',
]),
// 'data' field
@@ -312,6 +313,11 @@ SendTransactionScreen.prototype.onSubmit = function (gasPrice) {
return this.props.dispatch(actions.displayWarning(message))
}
+ if (!isHex(ethUtil.stripHexPrefix(txData)) && txData) {
+ message = 'Transaction data must be hex string.'
+ return this.props.dispatch(actions.displayWarning(message))
+ }
+
this.props.dispatch(actions.hideWarning())
var txParams = {