Constructors

Synopses

Declared in <cluster_linearize.h>

Construct a SetInfo for the empty set.

SetInfo() noexcept = default;

Construct a SetInfo for a specified set and feerate.

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

Construct a SetInfo for a given transaction in a depgraph.

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

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

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

Parameters

Name

Description

txn

The transactions in the set.

fr

Their combined fee and size.

depgraph

The graph the transaction belongs to.

pos

The position of the single transaction.

Created with MrDocs