Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion include/bitcoin/node/settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class BCN_API settings
bool thread_priority;
bool memory_priority;
bool allow_overlapped;
bool allow_batch_race;
float allowed_deviation;
float minimum_fee_rate;
float minimum_bump_rate;
Expand Down
1 change: 0 additions & 1 deletion src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ settings::settings() NOEXCEPT
memory_priority{ true },
thread_priority{ true },
allow_overlapped{ true },
allow_batch_race{ true },
batch_signatures{ 0 },
minimum_fee_rate{ 0.0 },
minimum_bump_rate{ 0.0 },
Expand Down
1 change: 0 additions & 1 deletion test/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ BOOST_AUTO_TEST_CASE(settings__node__default_context__expected)
BOOST_REQUIRE_EQUAL(node.memory_priority, true);
BOOST_REQUIRE_EQUAL(node.thread_priority, true);
BOOST_REQUIRE_EQUAL(node.allow_overlapped, true);
BOOST_REQUIRE_EQUAL(node.allow_batch_race, true);
BOOST_REQUIRE_EQUAL(node.minimum_fee_rate, 0.0);
BOOST_REQUIRE_EQUAL(node.minimum_bump_rate, 0.0);
BOOST_REQUIRE_EQUAL(node.allowed_deviation, 1.5);
Expand Down
Loading