diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:22:11 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-04-25 11:22:11 -0400 |
commit | 0db1b4503ed40194d56074160368b648765d80d8 (patch) | |
tree | fc35cb802ccc96a714fb18a14439911ea6b7eacc /src | |
parent | Merge pull request #8780 (diff) | |
parent | wallet2: fix outdated wallet check (diff) | |
download | monero-0db1b4503ed40194d56074160368b648765d80d8.tar.xz |
Merge pull request #8788
c61d33e wallet2: fix outdated wallet check (Crypto City)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 6c474abc7..7b41337fc 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3033,15 +3033,20 @@ void check_block_hard_fork_version(cryptonote::network_type nettype, uint8_t hf_ const hardfork_t *wallet_hard_forks = nettype == TESTNET ? testnet_hard_forks : nettype == STAGENET ? stagenet_hard_forks : mainnet_hard_forks; - wallet_is_outdated = static_cast<size_t>(hf_version) > wallet_num_hard_forks; + wallet_is_outdated = hf_version > wallet_hard_forks[wallet_num_hard_forks-1].version; if (wallet_is_outdated) return; // check block's height falls within wallet's expected range for block's given version - uint64_t start_height = hf_version == 1 ? 0 : wallet_hard_forks[hf_version - 1].height; - uint64_t end_height = static_cast<size_t>(hf_version) + 1 > wallet_num_hard_forks + size_t fork_index; + for (fork_index = 0; fork_index < wallet_num_hard_forks; ++fork_index) + if (wallet_hard_forks[fork_index].version == hf_version) + break; + THROW_WALLET_EXCEPTION_IF(fork_index == wallet_num_hard_forks, error::wallet_internal_error, "Fork not found in table"); + uint64_t start_height = wallet_hard_forks[fork_index].height; + uint64_t end_height = fork_index == wallet_num_hard_forks - 1 ? std::numeric_limits<uint64_t>::max() - : wallet_hard_forks[hf_version].height; + : wallet_hard_forks[fork_index + 1].height; daemon_is_outdated = height < start_height || height >= end_height; } |