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/database/tables/caches/prevout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace libbitcoin {
namespace database {
namespace table {

/// prevout is an array map index of previous outputs indexed by block link.
/// prevout is a slab arraymap index of previous outputs indexed by block link.
/// The coinbase flag is merged into the tx field, reducing it's domain.
/// Masking is from the right in order to accomodate integral tx domain.
struct prevout
Expand Down
2 changes: 1 addition & 1 deletion include/bitcoin/database/tables/caches/validated_bk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace libbitcoin {
namespace database {
namespace table {

/// validated_bk is a slab arraymap of block state, indexed by header.fk.
/// validated_bk is a record arraymap of block state, indexed by header.fk.
struct validated_bk
: public array_map<schema::validated_bk>
{
Expand Down
2 changes: 1 addition & 1 deletion include/bitcoin/database/tables/optionals/filter_bk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace libbitcoin {
namespace database {
namespace table {

/// filter_bk is a slab arraymap of filter headers indexed by block link.
/// filter_bk is a record arraymap of filter headers indexed by block link.
struct filter_bk
: public array_map<schema::filter_bk>
{
Expand Down
12 changes: 0 additions & 12 deletions test/test.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,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;
}

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