aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2022-04-05 23:48:18 -0400
committerluigi1111 <luigi1111w@gmail.com>2022-04-05 23:48:18 -0400
commitfb2f822c5277aa06bc461664c8a31f4e6a802af6 (patch)
tree84f15ce652653e2b72174520b5ac4a617c107cd0 /src/wallet/wallet2.h
parentMerge pull request #8216 (diff)
parentMake the wallet name optional when locked. (diff)
downloadmonero-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.h3
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;