Skip to content

Commit 606a444

Browse files
committed
merge bitcoin#26686: Enable erlay setting in process_message(s) targets
1 parent 38a16a2 commit 606a444

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/test/fuzz/process_message.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ void initialize_process_message()
6464
{
6565
Assert(GetNumMsgTypes() == getAllNetMessageTypes().size()); // If this fails, add or remove the message type below
6666

67-
static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
67+
static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(
68+
/*chain_name=*/CBaseChainParams::REGTEST,
69+
/*extra_args=*/{"-txreconciliation"});
6870
g_setup = testing_setup.get();
6971
for (int i = 0; i < 2 * COINBASE_MATURITY; i++) {
7072
MineBlock(g_setup->m_node, CScript() << OP_TRUE);

src/test/fuzz/process_messages.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ const TestingSetup* g_setup;
2323

2424
void initialize_process_messages()
2525
{
26-
static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
26+
static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(
27+
/*chain_name=*/CBaseChainParams::REGTEST,
28+
/*extra_args=*/{"-txreconciliation"});
2729
g_setup = testing_setup.get();
2830
for (int i = 0; i < 2 * COINBASE_MATURITY; i++) {
2931
MineBlock(g_setup->m_node, CScript() << OP_TRUE);

0 commit comments

Comments
 (0)