mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 16:27:39 +00:00
cleaned up OpenAlias messages in simplewallet
This commit is contained in:
parent
1663089b33
commit
2322a94427
1 changed files with 6 additions and 6 deletions
|
@ -929,11 +929,11 @@ bool simple_wallet::transfer(const std::vector<std::string> &args_)
|
||||||
std::string dnssec_str;
|
std::string dnssec_str;
|
||||||
if (dnssec_ok)
|
if (dnssec_ok)
|
||||||
{
|
{
|
||||||
dnssec_str = "DNSSEC validation PASSED!";
|
dnssec_str = "DNSSEC validation passed";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dnssec_str = "DNSSEC validation FAILED!";
|
dnssec_str = "WARNING: DNSSEC validation was unsuccessful, this address may not be correct!";
|
||||||
}
|
}
|
||||||
std::stringstream prompt;
|
std::stringstream prompt;
|
||||||
prompt << "For URL: " << url
|
prompt << "For URL: " << url
|
||||||
|
@ -947,13 +947,13 @@ bool simple_wallet::transfer(const std::vector<std::string> &args_)
|
||||||
std::string confirm_dns_ok = command_line::input_line(prompt.str());
|
std::string confirm_dns_ok = command_line::input_line(prompt.str());
|
||||||
if (confirm_dns_ok != "Y" && confirm_dns_ok != "y" && confirm_dns_ok != "Yes" && confirm_dns_ok != "yes")
|
if (confirm_dns_ok != "Y" && confirm_dns_ok != "y" && confirm_dns_ok != "Yes" && confirm_dns_ok != "yes")
|
||||||
{
|
{
|
||||||
fail_msg_writer() << "User terminated transfer request, disagreed with dns result from url: " << url;
|
fail_msg_writer() << "You have cancelled the transfer request";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fail_msg_writer() << "Failed to get a monero address from: " << local_args[i];
|
fail_msg_writer() << "Failed to get a Monero address from: " << local_args[i];
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -963,7 +963,7 @@ bool simple_wallet::transfer(const std::vector<std::string> &args_)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fail_msg_writer() << "wrong address: " << local_args[i];
|
fail_msg_writer() << "Wrong address: " << local_args[i];
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue