diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-27 00:43:15 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-01-16 20:06:04 +0000 |
commit | 1ef79b430f72f2cc2465d4e7bbe324f40c188772 (patch) | |
tree | 3d3acc00f34cd64ac6df2fb58893c5890e8f1e5c /src/simplewallet/simplewallet.h | |
parent | Merge pull request #5042 (diff) | |
download | monero-1ef79b430f72f2cc2465d4e7bbe324f40c188772.tar.xz |
simplewallet: disable long payment ids by default
unless --long-payment-id-support is used
Diffstat (limited to '')
-rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index f364df2ff..c3dc16d96 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -398,6 +398,8 @@ namespace cryptonote bool m_auto_refresh_refreshing; std::atomic<bool> m_in_manual_refresh; uint32_t m_current_subaddress_account; + + bool m_long_payment_id_support; // MMS mms::message_store& get_message_store() const { return m_wallet->get_message_store(); }; |