aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send.js
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-09-19 02:46:50 +0800
committerGitHub <noreply@github.com>2017-09-19 02:46:50 +0800
commitfa50bf9587882837af312fb18123cc98d1576313 (patch)
tree81474f053c88d9a55087cec95825390987f5aab2 /ui/app/send.js
parentc463647ad7a825eb954a56599ec205a3ba6cd3e6 (diff)
parent67accea693cb5f3167279ecdbe869cc464f7665a (diff)
downloadtangerine-wallet-browser-fa50bf9587882837af312fb18123cc98d1576313.tar.gz
tangerine-wallet-browser-fa50bf9587882837af312fb18123cc98d1576313.tar.zst
tangerine-wallet-browser-fa50bf9587882837af312fb18123cc98d1576313.zip
Merge pull request #2075 from MetaMask/mixed-case
Specific error for send screen: address checksum fails
Diffstat (limited to 'ui/app/send.js')
-rw-r--r--ui/app/send.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/send.js b/ui/app/send.js
index a21a219eb..e59c1130e 100644
--- a/ui/app/send.js
+++ b/ui/app/send.js
@@ -262,6 +262,11 @@ SendTransactionScreen.prototype.onSubmit = function () {
return this.props.dispatch(actions.displayWarning(message))
}
+ if ((util.isInvalidChecksumAddress(recipient))) {
+ message = 'Recipient address checksum is invalid.'
+ 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))