From 37d2c90923ab3c0a3af32ec155c1fb35dcf6f31a Mon Sep 17 00:00:00 2001 From: frstrtr Date: Mon, 13 Jul 2026 04:59:49 +0000 Subject: [PATCH] btc(nmc PR-1): link nmc_coin into c2pool-btc target Wire the embedded NMC coin object library into the packaged per-coin c2pool-btc binary so the shipped BTC package can carry Namecoin embedded merged-mining. Link-only slice: supplies nmc::coin Transaction ctors; the MM-manager host activation + aux commitment into the coinbase build land in the following slice on main_btc. No behavior change on its own. --- src/c2pool/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/c2pool/CMakeLists.txt b/src/c2pool/CMakeLists.txt index 73984b14f..844092465 100644 --- a/src/c2pool/CMakeLists.txt +++ b/src/c2pool/CMakeLists.txt @@ -175,6 +175,7 @@ target_link_libraries(c2pool-btc ltc_coin # ltc OBJECT lib pulls in protocol handlers needing ltc::coin::{Mutable,}Transaction ctors btc btc_stratum + nmc_coin # NMC coin-layer: embedded merged-mining (2b-ii) — supplies nmc::coin Transaction/MutableTransaction ctors for the aux commitment path wired into main_btc nlohmann_json::nlohmann_json ${Boost_LIBRARIES} )