removed some gcc warnings. mainly unused variables.

This commit is contained in:
roman
2015-08-23 17:59:24 +02:00
parent 776b4fc91a
commit 59cc92b388
4 changed files with 1 additions and 7 deletions

View File

@@ -2028,7 +2028,6 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
return false;
}
bool result;
if (threads > 1)
{
// ND: Speedup
@@ -2364,7 +2363,6 @@ bool Blockchain::handle_block_to_main_chain(const block& bl, const crypto::hash&
uint64_t t_exists = 0;
uint64_t t_pool = 0;
uint64_t t_dblspnd = 0;
uint64_t t_cc;
bool add_tx_to_pool = false;
TIME_MEASURE_FINISH(t3);
@@ -2679,7 +2677,6 @@ bool Blockchain::cleanup_handle_incoming_blocks(bool force_sync)
LOG_PRINT_YELLOW("Blockchain::" << __func__, LOG_LEVEL_3);
CRITICAL_REGION_LOCAL(m_blockchain_lock);
TIME_MEASURE_START(t1);
auto height = m_db->height();
if (m_sync_counter > 0)
{