File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,9 @@ void initialize_process_message()
56
56
{
57
57
Assert (GetNumMsgTypes () == getAllNetMessageTypes ().size ()); // If this fails, add or remove the message type below
58
58
59
- static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
59
+ static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>(
60
+ /* chain_name=*/ CBaseChainParams::REGTEST,
61
+ /* extra_args=*/ {" -txreconciliation" });
60
62
g_setup = testing_setup.get ();
61
63
for (int i = 0 ; i < 2 * COINBASE_MATURITY; i++) {
62
64
MineBlock (g_setup->m_node , CScript () << OP_TRUE);
Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ const TestingSetup* g_setup;
23
23
24
24
void initialize_process_messages ()
25
25
{
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" });
27
29
g_setup = testing_setup.get ();
28
30
for (int i = 0 ; i < 2 * COINBASE_MATURITY; i++) {
29
31
MineBlock (g_setup->m_node , CScript () << OP_TRUE);
You can’t perform that action at this time.
0 commit comments