aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-07-30 10:46:59 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-07-30 10:46:59 +0800
commit8ace4710ffa1ca56e59e5888fd076fecfae8a911 (patch)
treefeb69768f764c9bfb0d661ec970eb7b5850d8568 /ui
parent25259cc2cdadce71514d2e37cc9e0ea4bce21f40 (diff)
downloadtangerine-wallet-browser-8ace4710ffa1ca56e59e5888fd076fecfae8a911.tar.gz
tangerine-wallet-browser-8ace4710ffa1ca56e59e5888fd076fecfae8a911.tar.zst
tangerine-wallet-browser-8ace4710ffa1ca56e59e5888fd076fecfae8a911.zip
Clean up send screen
Diffstat (limited to 'ui')
-rw-r--r--ui/app/send.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index a24989e56..873db8473 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -320,7 +320,11 @@ SendTransactionScreen.prototype.onSubmit = function () {
const nickname = state.nickname || ' '
const input = document.querySelector('input[name="amount"]').value
const value = util.normalizeEthStringToWei(input)
- const txData = document.querySelector('input[name="txData"]').value
+ // TODO: check with team on whether txData is removed completely.
+ const txData = false;
+ // Must replace with memo data.
+ // const txData = document.querySelector('input[name="txData"]').value
+
const balance = this.props.balance
let message
@@ -339,7 +343,7 @@ SendTransactionScreen.prototype.onSubmit = function () {
return this.props.dispatch(actions.displayWarning(message))
}
- if (!isHex(ethUtil.stripHexPrefix(txData)) && txData) {
+ if (txData && !isHex(ethUtil.stripHexPrefix(txData))) {
message = 'Transaction data must be hex string.'
return this.props.dispatch(actions.displayWarning(message))
}