aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2024-05-20 23:39:58 -0500
committerluigi1111 <luigi1111w@gmail.com>2024-05-20 23:39:58 -0500
commita3c67ab5adf2de6fd711d912360f2f2d1a50aabf (patch)
tree8bb7cbd4a30a5b92e2363c82f74e93526fc0fcea
parentMerge pull request #9305 (diff)
parentsimplewallet: change boost::filesystem::complete to absolute. (diff)
downloadmonero-a3c67ab5adf2de6fd711d912360f2f2d1a50aabf.tar.xz
Merge pull request #9307
f9d9dd8 simplewallet: change boost::filesystem::complete to absolute. (0xFFFC0000)
-rw-r--r--src/simplewallet/simplewallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index ce23728ed..2f08ac025 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -3816,7 +3816,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("Looking for filename: ") << boost::filesystem::absolute(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())
@@ -4752,7 +4752,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());
+ success_msg_writer() << tr("Filename: ") << boost::filesystem::absolute(m_wallet->get_keys_file());
if (!two_random)
{