diff --git a/src/block_template.cpp b/src/block_template.cpp index 8a5ec64..1102a40 100644 --- a/src/block_template.cpp +++ b/src/block_template.cpp @@ -495,6 +495,7 @@ void BlockTemplate::update(const MinerData& data, const Mempool& mempool, Wallet LOGINFO(3, "final reward = " << log::Gray() << final_reward << log::NoColor() << ", weight = " << log::Gray() << final_weight << log::NoColor() << + ", outputs = " << log::Gray() << m_poolBlockTemplate->m_outputs.size() << log::NoColor() << ", " << log::Gray() << m_numTransactionHashes << log::NoColor() << " of " << log::Gray() << m_mempoolTxs.size() << log::NoColor() << " transactions included"); diff --git a/src/side_chain.cpp b/src/side_chain.cpp index 09893af..496a8c3 100644 --- a/src/side_chain.cpp +++ b/src/side_chain.cpp @@ -411,7 +411,7 @@ bool SideChain::add_external_block(PoolBlock& block, std::vector& missing_ } if (!block.m_difficulty.check_pow(pow_hash)) { - LOGWARN(3, "add_external_block: not enougn PoW for height = " << block.m_sidechainHeight << ", mainchain height " << block.m_txinGenHeight); + LOGWARN(3, "add_external_block: not enough PoW for height = " << block.m_sidechainHeight << ", mainchain height " << block.m_txinGenHeight); return false; }