File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments