From bb6e7a0b6d33a10633d36ffa4d3982a46d471c69 Mon Sep 17 00:00:00 2001 From: pasta Date: Wed, 19 Aug 2026 22:34:38 -0500 Subject: [PATCH] fix(test): use NodeContext::isman in coinjoin_inouts_tests PR #7603 moved CInstantSendManager out of LLMQContext into NodeContext and updated every call site that existed when that branch was cut. Two CoinJoin server test cases landed on develop afterwards, so the merge kept their m_node.llmq_ctx->isman spelling while the member itself was gone - the trees do not overlap textually, so neither the merge nor a rebase flags it, and develop no longer compiles. --- src/test/coinjoin_inouts_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/coinjoin_inouts_tests.cpp b/src/test/coinjoin_inouts_tests.cpp index 022eb8a3adca..e4d19fcb32d1 100644 --- a/src/test/coinjoin_inouts_tests.cpp +++ b/src/test/coinjoin_inouts_tests.cpp @@ -351,7 +351,7 @@ BOOST_AUTO_TEST_CASE(server_addentry_binds_entries_to_accepted_collaterals) TestableCoinJoinServer server(m_node.peerman.get(), *Assert(m_node.chainman), *Assert(m_node.connman), *Assert(m_node.dmnman), *Assert(m_node.dstxman), *Assert(m_node.mn_metaman), *Assert(m_node.mempool), mn_activeman, *Assert(m_node.mn_sync), - *Assert(m_node.llmq_ctx->isman)); + *Assert(m_node.isman)); auto make_collateral = [](uint8_t tag) { CMutableTransaction tx; @@ -403,7 +403,7 @@ BOOST_AUTO_TEST_CASE(server_addentry_rejects_entries_once_the_session_finalized) TestableCoinJoinServer server(m_node.peerman.get(), *Assert(m_node.chainman), *Assert(m_node.connman), *Assert(m_node.dmnman), *Assert(m_node.dstxman), *Assert(m_node.mn_metaman), *Assert(m_node.mempool), mn_activeman, *Assert(m_node.mn_sync), - *Assert(m_node.llmq_ctx->isman)); + *Assert(m_node.isman)); CMutableTransaction txCollateral; txCollateral.vin.emplace_back(COutPoint(uint256::ONE, 1));