aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-20 05:21:35 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-20 05:21:35 +0800
commit22a77b80411350bd844313b51ea58312940b9738 (patch)
tree757461fdb573045b2d870fd52d57064ee28335f1 /ui/app/send.js
parent43a948e94b03e3c4b9f888650a798f5c5d77ae1e (diff)
downloadtangerine-wallet-browser-22a77b80411350bd844313b51ea58312940b9738.tar.gz
tangerine-wallet-browser-22a77b80411350bd844313b51ea58312940b9738.tar.zst
tangerine-wallet-browser-22a77b80411350bd844313b51ea58312940b9738.zip
Increase send value precision
Diffstat (limited to 'ui/app/send.js')
-rw-r--r--ui/app/send.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index 044311b94..ea9dd7c0c 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -219,7 +219,7 @@ SendTransactionScreen.prototype.onSubmit = function() {
return this.props.dispatch(actions.displayWarning(message))
}
- if ((util.isValidAddress(recipient) && !txData) || (!recipient && !txData)) {
+ if ((!util.isValidAddress(recipient) && !txData) || (!recipient && !txData)) {
var message = 'Recipient address is invalid.'
return this.props.dispatch(actions.displayWarning(message))
}