diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:17:56 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:17:56 -0400 |
commit | 8b617064d4ddd49f215f785da81c56b799d391af (patch) | |
tree | 5b81fd127d3cdc6e5d808d6981a90900923f408f /src/simplewallet | |
parent | Merge pull request #8730 (diff) | |
parent | simplewallet: print fully qualified filename for new wallets (diff) | |
download | monero-8b617064d4ddd49f215f785da81c56b799d391af.tar.xz |
Merge pull request #8748
11a8360 simplewallet: print fully qualified filename for new wallets (moneromooo-monero)
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 7eed6d6e9..cc335411b 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) { |