diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-31 10:52:10 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-31 10:52:10 +0100 |
commit | aa5c2e01e72c7d45c2c818348c43dc04f605331e (patch) | |
tree | 671ae178fa9c1f9a94b28f8444efd466bf7e4e0a | |
parent | Merge pull request #3434 (diff) | |
download | monero-aa5c2e01e72c7d45c2c818348c43dc04f605331e.tar.xz |
simplewallet: warn about key reuse on startup
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 97dadb126..04fa3c66a 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -7458,7 +7458,7 @@ int main(int argc, char* argv[]) const auto vm = wallet_args::main( argc, argv, "monero-wallet-cli [--wallet-file=<file>|--generate-new-wallet=<file>] [<COMMAND>]", - sw::tr("This is the command line monero wallet. It needs to connect to a monero\ndaemon to work correctly."), + sw::tr("This is the command line monero wallet. It needs to connect to a monero\ndaemon to work correctly.\nWARNING: Do not reuse your Monero keys on an another fork, UNLESS this fork has key reuse mitigations built in. Doing so will harm your privacy."), desc_params, positional_options, [](const std::string &s, bool emphasis){ tools::scoped_message_writer(emphasis ? epee::console_color_white : epee::console_color_default, true) << s; }, |