Skip to content

Commit a84b290

Browse files
authored
Merge pull request libbitcoin#973 from eynhaender/backup-node-merge
Typo minimum_free_rate -> minimum_fee_rate
2 parents bd15071 + 3ced1ec commit a84b290

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/bitcoin/node/settings.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BCN_API settings
4141
bool defer_validation;
4242
bool defer_confirmation;
4343
float allowed_deviation;
44-
float minimum_free_rate;
44+
float minimum_fee_rate;
4545
float minimum_bump_rate;
4646
uint16_t announcement_cache;
4747
uint16_t allocation_multiple;

src/settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ settings::settings() NOEXCEPT
3535
thread_priority{ true },
3636
defer_validation{ false },
3737
defer_confirmation{ false },
38-
minimum_free_rate{ 0.0 },
38+
minimum_fee_rate{ 0.0 },
3939
minimum_bump_rate{ 0.0 },
4040
allowed_deviation{ 1.5 },
4141
announcement_cache{ 42 },

test/settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ BOOST_AUTO_TEST_CASE(settings__node__default_context__expected)
3535
BOOST_REQUIRE_EQUAL(node.headers_first, true);
3636
BOOST_REQUIRE_EQUAL(node.defer_validation, false);
3737
BOOST_REQUIRE_EQUAL(node.defer_confirmation, false);
38-
BOOST_REQUIRE_EQUAL(node.minimum_free_rate, 0.0);
38+
BOOST_REQUIRE_EQUAL(node.minimum_fee_rate, 0.0);
3939
BOOST_REQUIRE_EQUAL(node.minimum_bump_rate, 0.0);
4040
BOOST_REQUIRE_EQUAL(node.allowed_deviation, 1.5);
4141
BOOST_REQUIRE_EQUAL(node.announcement_cache, 42_u16);

0 commit comments

Comments
 (0)