diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-06-22 23:05:50 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-06-22 23:05:50 +0100 |
commit | 6b08001f9e6d4f066ce3a0f4d9bc6e24c601c87c (patch) | |
tree | e78a2a289edf8e606569aa068b9514847d7d88f6 | |
parent | Merge pull request #870 (diff) | |
download | monero-6b08001f9e6d4f066ce3a0f4d9bc6e24c601c87c.tar.xz |
simplewallet: mention the background refresh thread when starting
It should be less confusing for people who're used to the foreground
refresh from earlier versions.
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 22ddb0639..6ea934acd 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -3151,6 +3151,7 @@ bool simple_wallet::run() { refresh(std::vector<std::string>()); } + message_writer(epee::log_space::console_color_green, false) << "Background refresh thread started"; return m_cmd_binder.run_handling(std::string("[") + tr("wallet") + " " + addr_start + "]: ", ""); } //---------------------------------------------------------------------------------------------------- |