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
5 changes: 0 additions & 5 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1358,11 +1358,6 @@ options_metadata parser::load_settings() THROWS
value<uint16_t>(&configured.node.announcement_cache),
"Limit of per channel cached peer block and tx announcements, to avoid replaying, defaults to '42'."
)
(
"node.allocation_multiple",
value<uint16_t>(&configured.node.allocation_multiple),
"Block deserialization buffer multiple of wire size, defaults to '20' (0 disables)."
)
(
"node.maximum_height",
value<uint32_t>(&configured.node.maximum_height),
Expand Down
12 changes: 0 additions & 12 deletions test/test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,6 @@ std::ostream& operator<<(std::ostream& stream,
return stream;
}

// std_vector<Type> -> join(<<Type)
template <typename Type>
std::ostream& operator<<(std::ostream& stream,
const std_vector<Type>& values) NOEXCEPT
{
// Ok when testing serialize because only used for error message out.
BC_PUSH_WARNING(NO_THROW_IN_NOEXCEPT)
stream << system::serialize(values);
BC_POP_WARNING()
return stream;
}

// array<Type, Size> -> join(<<Type)
template <typename Type, size_t Size>
std::ostream& operator<<(std::ostream& stream,
Expand Down
Loading