From a79f524fefc3a49af6b5f15b3e16b6871fac2a1e Mon Sep 17 00:00:00 2001 From: jpk68 Date: Mon, 13 Jul 2026 17:27:55 -0400 Subject: [PATCH] simplewallet: fix prompt formatting --- src/simplewallet/simplewallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 5985f6302..c3a0d581e 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -5173,7 +5173,7 @@ void simple_wallet::check_background_mining(const epee::wipeable_string &passwor message_writer() << tr("The daemon is not set up to background mine."); message_writer() << tr("With background mining enabled, the daemon will mine when idle and not on battery."); message_writer() << tr("Enabling this supports the network you are using, and makes you eligible for receiving new monero"); - std::string accepted = input_line(tr("Do you want to do it now? (Y/Yes/N/No): ")); + std::string accepted = input_line(tr("Do you want to do it now? (Y/Yes/N/No)")); if (std::cin.eof() || !command_line::is_yes(accepted)) { m_wallet->setup_background_mining(tools::wallet2::BackgroundMiningNo); m_wallet->rewrite(m_wallet_file, password);