diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-01 21:37:36 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-02-03 10:34:07 +0000 |
| commit | 49b2a48a46a57fec79cc3132bf7361a75d18d8ad (patch) | |
| tree | 39ae9372d7a8aab16e408ab70fa91d2947e3b880 /src/simplewallet | |
| parent | 31bdf7bd113c2576fe579ef3a25a2d8fef419ffc (diff) | |
| download | monzero-core-49b2a48a46a57fec79cc3132bf7361a75d18d8ad.tar.gz monzero-core-49b2a48a46a57fec79cc3132bf7361a75d18d8ad.tar.xz monzero-core-49b2a48a46a57fec79cc3132bf7361a75d18d8ad.zip | |
simplewallet: tell the user to complain to the recipient
for long payment ids
Diffstat (limited to 'src/simplewallet')
| -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 3cbfb760b..d7797f3cb 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -116,7 +116,7 @@ typedef cryptonote::simple_wallet sw; #define LONG_PAYMENT_ID_SUPPORT_CHECK() \ do { \ if (!m_long_payment_id_support) { \ - fail_msg_writer() << tr("Long payment IDs are obsolete. Use --long-payment-id-support if you really must use one."); \ + fail_msg_writer() << tr("Long payment IDs are obsolete. 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."); \ return true; \ } \ } while(0) |
