From 79a4abdc18f1491243aa88fa43413cb9b95b61cb Mon Sep 17 00:00:00 2001 From: wowario Date: Sat, 25 Feb 2023 09:05:42 +0300 Subject: [PATCH] show wallet info --- src/wallet/wallet2.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index e06b32bcf..a57330916 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1187,8 +1187,8 @@ wallet2::wallet2(network_type nettype, uint64_t kdf_rounds, bool unattended, std m_ignore_outputs_above(MONEY_SUPPLY), m_ignore_outputs_below(0), m_track_uses(false), - m_show_wallet_name_when_locked(false), - m_show_detailed_prompt(false), + m_show_wallet_name_when_locked(true), + m_show_detailed_prompt(true), m_inactivity_lock_timeout(DEFAULT_INACTIVITY_LOCK_TIMEOUT), m_setup_background_mining(BackgroundMiningNo), m_persistent_rpc_client_id(false), @@ -4293,8 +4293,8 @@ bool wallet2::load_keys_buf(const std::string& keys_buf, const epee::wipeable_st m_ignore_outputs_above = MONEY_SUPPLY; m_ignore_outputs_below = 0; m_track_uses = false; - m_show_wallet_name_when_locked = false; - m_show_detailed_prompt = false; + m_show_wallet_name_when_locked = true; + m_show_detailed_prompt = true; m_inactivity_lock_timeout = DEFAULT_INACTIVITY_LOCK_TIMEOUT; m_setup_background_mining = BackgroundMiningNo; m_subaddress_lookahead_major = SUBADDRESS_LOOKAHEAD_MAJOR;