Merge pull request #4202

8439306 wallet2: do not divide by 0 on invalid daemon response (moneromooo-monero)
release-v0.5.1
luigi1111 6 years ago
commit 6e8e4fb3b7
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -11211,6 +11211,7 @@ std::vector<std::pair<uint64_t, uint64_t>> wallet2::estimate_backlog(const std::
const auto result = m_node_rpc_proxy.get_block_size_limit(block_size_limit);
throw_on_rpc_response_error(result, "get_info");
uint64_t full_reward_zone = block_size_limit / 2;
THROW_WALLET_EXCEPTION_IF(full_reward_zone == 0, error::wallet_internal_error, "Invalid block size limit from daemon");
std::vector<std::pair<uint64_t, uint64_t>> blocks;
for (const auto &fee_level: fee_levels)

Loading…
Cancel
Save