| 720 | return MiniMiner(*m_node.mempool, outpoints).CalculateTotalBumpFees(target_feerate); |
| 721 | } |
| 722 | void getPackageLimits(unsigned int& limit_ancestor_count, unsigned int& limit_descendant_count) override |
| 723 | { |
| 724 | const CTxMemPool::Limits default_limits{}; |
| 725 | |
| 726 | const CTxMemPool::Limits& limits{m_node.mempool ? m_node.mempool->m_opts.limits : default_limits}; |
| 727 | |
| 728 | limit_ancestor_count = limits.ancestor_count; |
| 729 | limit_descendant_count = limits.descendant_count; |
| 730 | } |
| 731 | util::Result<void> checkChainLimits(const CTransactionRef& tx) override |
| 732 | { |
| 733 | if (!m_node.mempool) return {}; |
no outgoing calls
no test coverage detected