From 5fb1e492fb32e664364603c34044c3e573501781 Mon Sep 17 00:00:00 2001 From: Frankie Date: Wed, 19 Oct 2016 14:33:30 -0700 Subject: Add valdations to txData param --- ui/app/send.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ui/app/send.js') diff --git a/ui/app/send.js b/ui/app/send.js index 97ed29e4a..d28a6433b 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') @@ -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 = { -- cgit From ac7dca22c3a630d4623e44abe1e86d1cc51f3acc Mon Sep 17 00:00:00 2001 From: Frankie Date: Wed, 19 Oct 2016 17:39:41 -0700 Subject: Fix up wording --- ui/app/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app/send.js') diff --git a/ui/app/send.js b/ui/app/send.js index d28a6433b..b8af19028 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -191,7 +191,7 @@ SendTransactionScreen.prototype.render = function () { marginBottom: '16px', }, }, [ - 'Transactional Data (optional)', + 'Transaction Data (optional)', ]), // 'data' field -- cgit