cluster_linearize::SetInfo::SetInfo

Constructors

Synopses

Declared in <cluster_linearize.h>

Construct a SetInfo for the empty set.

SetInfo() noexcept = default;
» more...

Construct a SetInfo for a specified set and feerate.

SetInfo(
    SetType const& txn,
    FeeFrac const& fr) noexcept;
» more...

Construct a SetInfo for a given transaction in a depgraph.

explicit
SetInfo(
    DepGraph<SetType> const& depgraph,
    DepGraphIndex pos) noexcept;
» more...

Construct a SetInfo for a set of transactions in a depgraph.

explicit
SetInfo(
    DepGraph<SetType> const& depgraph,
    SetType const& txn) noexcept;
» more...

Parameters

NameDescription
txnThe transactions in the set.
frTheir combined fee and size.
depgraphThe graph the transaction belongs to.
posThe position of the single transaction.