Revert "Remove compact/pruned blob code - it displeases the carrot"

This reverts commit d5a8bbcc4a.
This commit is contained in:
Matt Hess
2025-12-11 02:26:30 +00:00
parent d5a8bbcc4a
commit 940f1cabe8
7 changed files with 271 additions and 98 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);
server->broadcast(*block, get_parent(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);
p2pServer()->broadcast(*block, get_parent(block));
}
}