diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-04-05 23:48:18 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-04-05 23:48:18 -0400 |
commit | fb2f822c5277aa06bc461664c8a31f4e6a802af6 (patch) | |
tree | 84f15ce652653e2b72174520b5ac4a617c107cd0 /src/wallet/wallet2.h | |
parent | Merge pull request #8216 (diff) | |
parent | Make the wallet name optional when locked. (diff) | |
download | monero-fb2f822c5277aa06bc461664c8a31f4e6a802af6.tar.xz |
Merge pull request #7153
354e1d9 Make the wallet name optional when locked. (Norman Moeschter)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index d64832b13..51ca6e038 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1204,6 +1204,8 @@ private: void ignore_outputs_below(uint64_t value) { m_ignore_outputs_below = value; } bool track_uses() const { return m_track_uses; } void track_uses(bool value) { m_track_uses = value; } + bool show_wallet_name_when_locked() const { return m_show_wallet_name_when_locked; } + void show_wallet_name_when_locked(bool value) { m_show_wallet_name_when_locked = value; } BackgroundMiningSetupType setup_background_mining() const { return m_setup_background_mining; } void setup_background_mining(BackgroundMiningSetupType value) { m_setup_background_mining = value; } uint32_t inactivity_lock_timeout() const { return m_inactivity_lock_timeout; } @@ -1717,6 +1719,7 @@ private: uint64_t m_ignore_outputs_above; uint64_t m_ignore_outputs_below; bool m_track_uses; + bool m_show_wallet_name_when_locked; uint32_t m_inactivity_lock_timeout; BackgroundMiningSetupType m_setup_background_mining; bool m_persistent_rpc_client_id; |