Get the number of transactions in the graph. Complexity: O(1). */
| 119 | DepGraphIndex PositionRange() const noexcept { return entries.size(); } |
| 120 | /** Get the number of transactions in the graph. Complexity: O(1). */ |
| 121 | auto TxCount() const noexcept { return m_used.Count(); } |
| 122 | /** Get the feerate of a given transaction i. Complexity: O(1). */ |
| 123 | const FeeFrac& FeeRate(DepGraphIndex i) const noexcept { return entries[i].feerate; } |
| 124 | /** Get the mutable feerate of a given transaction i. Complexity: O(1). */ |