Merge pull request #8527

e988530 Remove redundant check (SerHack)
pull/6896/merge
luigi1111 2 years ago
commit f41c68648c
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -775,7 +775,7 @@ bool t_rpc_command_executor::print_blockchain_info(int64_t start_block_index, ui
return true;
}
}
if (start_block_index < 0 && (uint64_t)-start_block_index >= ires.height)
if ((uint64_t)-start_block_index >= ires.height)
{
tools::fail_msg_writer() << "start offset is larger than blockchain height";
return true;

Loading…
Cancel
Save