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-14 14:43:59 +0000 |
commit | 1767c8172f9e8dfa03e714c2847cd00b31f45036 (patch) | |
tree | 674a4ae2cc340b2939270d73388666a50ba686c4 /src | |
parent | ringct: fix v1 ecdhInfo serialization (diff) | |
download | monero-1767c8172f9e8dfa03e714c2847cd00b31f45036.tar.xz |
simplewallet: tell the user to complain to the recipient
for long payment ids
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 e38488caa..4a4754471 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -110,7 +110,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) |