aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-16 10:10:24 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-04-16 10:11:02 +0000
commit926e047288bf704f1864645e9e0d2d5b3bea0b4e (patch)
treece116710a307d77414ee44f4965ccb9408224f44 /src
parentMerge pull request #5440 (diff)
downloadmonero-926e047288bf704f1864645e9e0d2d5b3bea0b4e.tar.xz
simplewallet: add another warning about long payment ids
Diffstat (limited to 'src')
-rw-r--r--src/simplewallet/simplewallet.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 2e134931f..472f037d0 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -4092,6 +4092,14 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
if (welcome)
message_writer(console_color_yellow, true) << tr("If you are new to Monero, type \"welcome\" for a brief overview.");
+ if (m_long_payment_id_support)
+ {
+ message_writer(console_color_red, false) <<
+ tr("WARNING: obsolete long payment IDs are enabled. Sending transactions with those payment IDs are bad for your privacy.");
+ message_writer(console_color_red, false) <<
+ tr("It is recommended that you do not use them, and ask recipients who ask for one to not endanger your privacy.");
+ }
+
return true;
}
//----------------------------------------------------------------------------------------------------