aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-28 08:07:45 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-28 08:07:45 +0800
commit3d9bedaeea9b0485b7cfbe3255d72cfe470bcaa2 (patch)
treeae897f9f86cfc54644c2e4bddd1c76591a316cde /ui
parent36c7ffa585f85179458e3ff874a4e821772b6524 (diff)
downloadtangerine-wallet-browser-3d9bedaeea9b0485b7cfbe3255d72cfe470bcaa2.tar.gz
tangerine-wallet-browser-3d9bedaeea9b0485b7cfbe3255d72cfe470bcaa2.tar.zst
tangerine-wallet-browser-3d9bedaeea9b0485b7cfbe3255d72cfe470bcaa2.zip
Fix it so you cant send a negitavie amount of ETH
Diffstat (limited to 'ui')
-rw-r--r--ui/app/send.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index 4b501a7b5..540d85382 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -216,6 +216,11 @@ SendTransactionScreen.prototype.onSubmit = function () {
return this.props.dispatch(actions.displayWarning(message))
}
+ if (input < 0) {
+ message = 'Can not send negative amounts of ETH.'
+ return this.props.dispatch(actions.displayWarning(message))
+ }
+
if ((!util.isValidAddress(recipient) && !txData) || (!recipient && !txData)) {
message = 'Recipient address is invalid.'
return this.props.dispatch(actions.displayWarning(message))
@@ -234,4 +239,3 @@ SendTransactionScreen.prototype.onSubmit = function () {
this.props.dispatch(actions.signTx(txParams))
}
-