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
2 changes: 1 addition & 1 deletion include/bitcoin/node/define.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ typedef std::function<void(const code&, uint64_t)> estimate_handler;

/// Organization types.
typedef std::function<void(const code&, size_t)> organize_handler;
typedef database::store<database::map> store;
typedef database::store<database::mmap> store;
typedef database::query<store> query;

/// Work types.
Expand Down
2 changes: 1 addition & 1 deletion src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ settings::settings() NOEXCEPT
thread_priority{ true },
allow_overlapped{ true },
allow_batch_race{ true },
batch_signatures{ 100'000 },
batch_signatures{ 0 },
minimum_fee_rate{ 0.0 },
minimum_bump_rate{ 0.0 },
allowed_deviation{ 1.5 },
Expand Down
2 changes: 1 addition & 1 deletion test/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ BOOST_AUTO_TEST_CASE(settings__node__default_context__expected)
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);
BOOST_REQUIRE_EQUAL(node.batch_signatures, 100'000_u64);
BOOST_REQUIRE_EQUAL(node.batch_signatures, 0_u64);
BOOST_REQUIRE_EQUAL(node.announcement_cache, 42_u16);
BOOST_REQUIRE_EQUAL(node.fee_estimate_horizon, 0u);
BOOST_REQUIRE_EQUAL(node.maximum_height, 0_u32);
Expand Down
Loading