aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkenshi84 <kenshi84@protonmail.ch>2017-02-08 23:04:48 +0900
committerkenshi84 <kenshi84@protonmail.ch>2017-02-08 23:04:48 +0900
commit9459f33178beddb1b89d8654aa143809ef978d64 (patch)
tree80c4a0dd2c32457f60621c15a4609f8ce55bbeaa
parentMerge pull request #1679 (diff)
downloadmonero-9459f33178beddb1b89d8654aa143809ef978d64.tar.xz
simplewallet: print error when address is wrong
-rw-r--r--src/simplewallet/simplewallet.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index a8f1d177f..15f2e8ab1 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -2175,7 +2175,10 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri
bool has_payment_id;
crypto::hash8 new_payment_id;
if (!cryptonote::get_account_address_from_str_or_url(de.addr, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[i]))
+ {
+ fail_msg_writer() << tr("failed to parse address");
return true;
+ }
if (has_payment_id)
{
@@ -2670,7 +2673,10 @@ bool simple_wallet::sweep_all(const std::vector<std::string> &args_)
crypto::hash8 new_payment_id;
cryptonote::account_public_address address;
if (!cryptonote::get_account_address_from_str_or_url(address, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[0]))
+ {
+ fail_msg_writer() << tr("failed to parse address");
return true;
+ }
if (has_payment_id)
{