From cf5bfd0cc467c33f345ebac9bef829e9dd1e4e48 Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 2 Oct 2023 19:17:37 +0300 Subject: [PATCH] disable mismatched daemon check --- src/wallet/wallet2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 701fbb0fd..093b77c0d 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1261,7 +1261,7 @@ wallet2::wallet2(network_type nettype, uint64_t kdf_rounds, bool unattended, std m_enable_multisig(false), m_pool_info_query_time(0), m_has_ever_refreshed_from_node(false), - m_allow_mismatched_daemon_version(false) + m_allow_mismatched_daemon_version(true) { set_rpc_client_secret_key(rct::rct2sk(rct::skGen())); } @@ -4848,7 +4848,7 @@ bool wallet2::load_keys_buf(const std::string& keys_buf, const epee::wipeable_st m_auto_mine_for_rpc_payment_threshold = -1.0f; m_credits_target = 0; m_enable_multisig = false; - m_allow_mismatched_daemon_version = false; + m_allow_mismatched_daemon_version = true; } else if(json.IsObject()) {