Bitcoin Core 28.99.0
P2P Digital Currency
|
Information about a single transaction. More...
Public Member Functions | |
Entry () noexcept=default | |
Construct an empty entry. More... | |
Entry (const FeeFrac &f, const SetType &a, const SetType &d) noexcept | |
Construct an entry with a given feerate, ancestor set, descendant set. More... | |
Public Attributes | |
FeeFrac | feerate |
Fee and size of transaction itself. More... | |
SetType | ancestors |
All ancestors of the transaction (including itself). More... | |
SetType | descendants |
All descendants of the transaction (including itself). More... | |
Friends | |
bool | operator== (const Entry &, const Entry &) noexcept=default |
Equality operator (primarily for for testing purposes). More... | |
Information about a single transaction.
Definition at line 31 of file cluster_linearize.h.
|
defaultnoexcept |
Construct an empty entry.
|
inlinenoexcept |
Construct an entry with a given feerate, ancestor set, descendant set.
Definition at line 46 of file cluster_linearize.h.
Equality operator (primarily for for testing purposes).
SetType cluster_linearize::DepGraph< SetType >::Entry::ancestors |
All ancestors of the transaction (including itself).
Definition at line 36 of file cluster_linearize.h.
SetType cluster_linearize::DepGraph< SetType >::Entry::descendants |
All descendants of the transaction (including itself).
Definition at line 38 of file cluster_linearize.h.
FeeFrac cluster_linearize::DepGraph< SetType >::Entry::feerate |
Fee and size of transaction itself.
Definition at line 34 of file cluster_linearize.h.