From e5d14a96d427a26e72a08f0b913c196dd312584d Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 9 Jan 2023 07:27:20 +0300 Subject: [PATCH] comment out mismatched_daemon_version 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 7e1b000e2..406245096 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2987,7 +2987,7 @@ void wallet2::pull_and_parse_next_blocks(uint64_t start_height, uint64_t &blocks break; } - if (!m_allow_mismatched_daemon_version) + /*if (!m_allow_mismatched_daemon_version) { // make sure block's hard fork version is expected at the block's height uint8_t hf_version = parsed_blocks[i].block.major_version; @@ -3001,7 +3001,7 @@ void wallet2::pull_and_parse_next_blocks(uint64_t start_height, uint64_t &blocks ? "Make sure your wallet is up to date" : "Make sure the node you are connected to is running the latest version") ); - } + }*/ parsed_blocks[i].o_indices = std::move(o_indices[i]); }