From 56b5d10b414afe9eed4af606fc78287b0685c13c 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 03ab03450..0e28eb8f7 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())); } @@ -4845,7 +4845,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()) {