From bbf9570bf0115885222b2ab2cc8d024515673405 Mon Sep 17 00:00:00 2001 From: evoskuil Date: Wed, 8 Jul 2026 13:28:01 -0400 Subject: [PATCH] Fix test break on changed setting. --- test/settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/settings.cpp b/test/settings.cpp index 4574cb61..c3db39ca 100644 --- a/test/settings.cpp +++ b/test/settings.cpp @@ -61,7 +61,7 @@ BOOST_AUTO_TEST_CASE(settings__node__default_context__expected) BOOST_REQUIRE_EQUAL(node.maximum_concurrency_(), 50'000_size); BOOST_REQUIRE_EQUAL(node.fee_estimate_horizon_(), 0_size); BOOST_REQUIRE(!node.fee_estimate_enabled()); - BOOST_REQUIRE(node.batch_signatures_enabled()); + BOOST_REQUIRE(!node.batch_signatures_enabled()); BOOST_REQUIRE(node.sample_period() == steady_clock::duration(seconds(10))); BOOST_REQUIRE(node.currency_window() == steady_clock::duration(minutes(1440))); BOOST_REQUIRE(node.thread_priority_() == network::processing_priority::high);