core_rpc_server: remove dummy assigning int to bool

Coverity 197653
pull/200/head
moneromooo-monero 5 years ago
parent 37345921ec
commit e1b097b99b
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1393,11 +1393,9 @@ namespace cryptonote
submit_req.push_back(boost::value_initialized<std::string>());
res.height = m_core.get_blockchain_storage().get_current_blockchain_height();
bool r = CORE_RPC_STATUS_OK;
for(size_t i = 0; i < req.amount_of_blocks; i++)
{
r = on_getblocktemplate(template_req, template_res, error_resp, ctx);
bool r = on_getblocktemplate(template_req, template_res, error_resp, ctx);
res.status = template_res.status;
template_req.prev_block.clear();

Loading…
Cancel
Save