mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-12-22 13:48:51 +00:00
simplewallet: print fully qualified filename for new wallets
from time to time, some people don't realize their wallets get created in their current working directory
This commit is contained in:
parent
b07e533a8f
commit
f438928ed8
@ -4088,6 +4088,7 @@ bool simple_wallet::ask_wallet_create_if_needed()
|
|||||||
bool ok = true;
|
bool ok = true;
|
||||||
if (!m_restoring)
|
if (!m_restoring)
|
||||||
{
|
{
|
||||||
|
message_writer() << tr("Looking for filename: ") << boost::filesystem::complete(wallet_path);
|
||||||
message_writer() << tr("No wallet found with that name. Confirm creation of new wallet named: ") << wallet_path;
|
message_writer() << tr("No wallet found with that name. Confirm creation of new wallet named: ") << wallet_path;
|
||||||
confirm_creation = input_line("", true);
|
confirm_creation = input_line("", true);
|
||||||
if(std::cin.eof())
|
if(std::cin.eof())
|
||||||
@ -5034,6 +5035,7 @@ boost::optional<epee::wipeable_string> simple_wallet::new_wallet(const boost::pr
|
|||||||
"your current session's state. Otherwise, you might need to synchronize \n"
|
"your current session's state. Otherwise, you might need to synchronize \n"
|
||||||
"your wallet again (your wallet keys are NOT at risk in any case).\n")
|
"your wallet again (your wallet keys are NOT at risk in any case).\n")
|
||||||
;
|
;
|
||||||
|
success_msg_writer() << tr("Filename: ") << boost::filesystem::complete(m_wallet->get_keys_file());
|
||||||
|
|
||||||
if (!two_random)
|
if (!two_random)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user