simplewallet: do not mention inactivity if a lock was manual

This commit is contained in:
moneromooo-monero 2019-11-01 14:22:40 +00:00
parent 4c9fd8d86d
commit 9f57f0df92
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 2 additions and 1 deletions

View File

@ -6195,7 +6195,8 @@ void simple_wallet::check_for_inactivity_lock(bool user)
}
while (1)
{
tools::msg_writer() << tr("Locked due to inactivity. The wallet password is required to unlock the console.");
const char *inactivity_msg = user ? "" : tr("Locked due to inactivity.");
tools::msg_writer() << inactivity_msg << (inactivity_msg[0] ? " " : "") << tr("The wallet password is required to unlock the console.");
try
{
if (get_and_verify_password())