Remove compact/pruned blob code - it displeases the carrot

This commit is contained in:
Matt Hess
2025-12-10 15:56:49 +00:00
parent 4a2bec3f29
commit d5a8bbcc4a
7 changed files with 98 additions and 271 deletions
+2 -2
View File
@@ -1603,7 +1603,7 @@ void SideChain::verify_loop(PoolBlock* block)
if (m_pool && (block->m_minerWallet == m_pool->params().m_miningWallet)) {
LOGINFO(0, log::Green() << "SHARE ADDED: height = " << block->m_sidechainHeight << ", id = " << block->m_sidechainId << ", mainchain height = " << block->m_txinGenHeight);
}
server->broadcast(*block, get_parent(block));
server->broadcast(*block);
}
}
@@ -2070,7 +2070,7 @@ void SideChain::update_chain_tip(PoolBlock* block)
if (p2pServer() && block->m_wantBroadcast && !block->m_broadcasted) {
block->m_broadcasted = true;
p2pServer()->broadcast(*block, get_parent(block));
p2pServer()->broadcast(*block);
}
}