mirror of
https://github.com/monero-project/monero.git
synced 2025-07-23 06:20:50 -04:00
Add missing semicolons after log statements
This commit is contained in:
parent
5d33b43d8d
commit
3f2970fadb
8 changed files with 12 additions and 12 deletions
|
@ -394,7 +394,7 @@ bool Blockchain::deinit()
|
|||
{
|
||||
LOG_PRINT_L3("Blockchain::" << __func__);
|
||||
|
||||
LOG_PRINT_L0("Closing IO Service.")
|
||||
LOG_PRINT_L0("Closing IO Service.");
|
||||
// stop async service
|
||||
m_async_work_idle.reset();
|
||||
m_async_pool.join_all();
|
||||
|
@ -2898,7 +2898,7 @@ bool Blockchain::prepare_handle_incoming_blocks(const std::list<block_complete_e
|
|||
crypto::hash tophash = m_db->top_block_hash();
|
||||
if (block.prev_id != tophash)
|
||||
{
|
||||
LOG_PRINT_L1("Skipping prepare blocks. New blocks don't belong to chain.")
|
||||
LOG_PRINT_L1("Skipping prepare blocks. New blocks don't belong to chain.");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@ -2958,7 +2958,7 @@ bool Blockchain::prepare_handle_incoming_blocks(const std::list<block_complete_e
|
|||
|
||||
if (blocks_exist)
|
||||
{
|
||||
LOG_PRINT_L0("Skipping prepare blocks. Blocks exist.")
|
||||
LOG_PRINT_L0("Skipping prepare blocks. Blocks exist.");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -257,7 +257,7 @@ namespace cryptonote
|
|||
m_threads.push_back(boost::thread(attrs, boost::bind(&miner::worker_thread, this)));
|
||||
}
|
||||
|
||||
LOG_PRINT_L0("Mining has started with " << threads_count << " threads, good luck!" )
|
||||
LOG_PRINT_L0("Mining has started with " << threads_count << " threads, good luck!" );
|
||||
return true;
|
||||
}
|
||||
//-----------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue