Updating the successful login message

Updating the successful login message to add additional information about running `tcoin` to check one's balance and messages. This is intended to make it easy for new users to know what to do once they've done "tcoin on".
This commit is contained in:
login000 2019-09-24 02:05:27 +10:00 committed by GitHub
parent bc0ab5dd6b
commit eaad7d3d41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -690,7 +690,7 @@ int log_on(const char* username)
std::string salt_logged_in_file = std::string(TCOIN_SALT_PATH) + std::string(username) + std::string("_salt_logged_in.txt");
rename(salt_file.c_str(), salt_logged_in_file.c_str());
remove(decrypted_password_file.c_str());
std::cout << "\nYou have now successfully logged on to tildecoin. Please be aware that any programs you run now can siphon funds from your account without your knowing until it's too late. Please run `tcoin off` before running any untrusted programs.\n\n";
std::cout << "\nYou have now successfully logged on to tildecoin (please run `tcoin` to check your balance and messages). Please be aware that any programs you run now can siphon funds from your account without your knowing until it's too late. Please run `tcoin off` before running any untrusted programs.\n\n";
}
else
{