Skip to content
Merged
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
4 changes: 2 additions & 2 deletions include/bitcoin/database/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ struct BCD_API unspent
{
struct less_than
{
bool operator()(const unspent& a, const unspent& b) NOEXCEPT;
bool operator()(const unspent& a, const unspent& b) const NOEXCEPT;
};

outpoint tx{};
Expand All @@ -118,7 +118,7 @@ struct BCD_API history
{
struct less_than
{
bool operator()(const history& a, const history& b) NOEXCEPT;
bool operator()(const history& a, const history& b) const NOEXCEPT;
};

checkpoint tx{};
Expand Down
Loading