aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/send.js2
-rw-r--r--ui/app/util.js4
2 files changed, 3 insertions, 3 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))
}
diff --git a/ui/app/util.js b/ui/app/util.js
index d8a0313ea..7597c2df8 100644
--- a/ui/app/util.js
+++ b/ui/app/util.js
@@ -120,9 +120,9 @@ function normalizeToWei(amount, currency) {
return amount
}
-var multiple = new ethUtil.BN('1000', 10)
+var multiple = new ethUtil.BN('10000', 10)
function normalizeNumberToWei(n, currency) {
- var enlarged = n * 1000
+ var enlarged = n * 10000
var amount = new ethUtil.BN(String(enlarged), 10)
return normalizeToWei(amount, currency).div(multiple)
}