diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-17 13:24:32 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-03-17 14:22:50 +0000 |
commit | 4500236f259cac0e768bfe364edcffa14859c816 (patch) | |
tree | 3e5a877e04badd794786870a37671a476e2a726e /src/wallet/wallet2.cpp | |
parent | Merge pull request #5249 (diff) | |
download | monero-4500236f259cac0e768bfe364edcffa14859c816.tar.xz |
wallet2: make use_fork_rules handle chain heights lower than leeway
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 11be8fd6e..91ad66fbd 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -9688,7 +9688,7 @@ bool wallet2::use_fork_rules(uint8_t version, int64_t early_blocks) const result = m_node_rpc_proxy.get_earliest_height(version, earliest_height); throw_on_rpc_response_error(result, "get_hard_fork_info"); - bool close_enough = height >= earliest_height - early_blocks && earliest_height != std::numeric_limits<uint64_t>::max(); // start using the rules that many blocks beforehand + bool close_enough = (int64_t)height >= (int64_t)earliest_height - early_blocks && earliest_height != std::numeric_limits<uint64_t>::max(); // start using the rules that many blocks beforehand if (close_enough) LOG_PRINT_L2("Using v" << (unsigned)version << " rules"); else |