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-02-12 12:16:32 +0000 |
commit | e10d12b6587513a9994a36d9a3e7b839addbc746 (patch) | |
tree | c5f615d4fcc9a4cff251eb2d603091fd8cb412fe /src/simplewallet/simplewallet.h | |
parent | blockchain: fix wrong hf version when popping multiple blocks (diff) | |
download | monero-e10d12b6587513a9994a36d9a3e7b839addbc746.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 39b715b73..3ad16cde9 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -357,5 +357,7 @@ 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; }; } |