diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-12 14:08:59 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-12 14:09:26 +0000 |
| commit | 34f8c237c27f6abb0e5ed4b62adf13ecfcce2b08 (patch) | |
| tree | f4b49e245be30db99f0dd017ab54a948273acf7c /src | |
| parent | 9c77dbf376e95a32015cb32d1233050241a2c99c (diff) | |
| download | monzero-core-34f8c237c27f6abb0e5ed4b62adf13ecfcce2b08.tar.gz monzero-core-34f8c237c27f6abb0e5ed4b62adf13ecfcce2b08.tar.xz monzero-core-34f8c237c27f6abb0e5ed4b62adf13ecfcce2b08.zip | |
simplewallet: fix warning about long payment id using the old option
Diffstat (limited to 'src')
| -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 66317adcb..7bea1374f 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -118,7 +118,7 @@ typedef cryptonote::simple_wallet sw; if (!m_long_payment_id_support) { \ fail_msg_writer() << tr("Warning: Long payment IDs are obsolete."); \ fail_msg_writer() << tr("Long payment IDs are not encrypted on the blockchain, and will harm your privacy."); \ - fail_msg_writer() << tr("Use --long-payment-id-support if you really must use one, and warn the recipient they are using an obsolete feature that will disappear in the future."); \ + fail_msg_writer() << tr("Use --long-payment-id-support-bad-for-privacy if you really must use one, and warn the recipient they are using an obsolete feature that will disappear in the future."); \ return true; \ } \ } while(0) |
