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
11 changes: 11 additions & 0 deletions include/bitcoin/node/chase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,17 @@ enum class chase
/// Issued by 'confirm' [and handled by 'transaction'].
reorganized,

/// Wallet.
/// -----------------------------------------------------------------------

/// An input spent|unspent the given address (address_t).
/// Issued by 'confirm' [and handled by services].
spent,

/// An address of given address received|unreceived payment (address_t).
/// Issued by 'confirm' [and handled by services].
received,

/// Mining.
/// -----------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions include/bitcoin/node/define.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ using peer_t = uint64_t;
using object_t = object_key;
using header_t = database::header_link::integer;
using transaction_t = database::tx_link::integer;
using address_t = database::address_link::integer;

/// std::variant types must be distinct, and xcode size_t is neither uint32_t
/// nor uint64_t, so this ensures we have the distinct set of necessary types.
Expand Down
Loading