aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2023-02-24 10:22:48 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2023-02-24 10:22:48 +0000
commit11a836074df363173e817dc6c2af4e9e82d5a66e (patch)
tree51ff91d04ac6494009af1a11193204d89c72602f /src
parentMerge pull request #8713 (diff)
downloadmonero-11a836074df363173e817dc6c2af4e9e82d5a66e.tar.xz
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
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index f59af575e..e9373d428 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -4022,6 +4022,7 @@ bool simple_wallet::ask_wallet_create_if_needed()
bool ok = true;
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;
confirm_creation = input_line("", true);
if(std::cin.eof())
@@ -4968,6 +4969,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 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)
{