| 630 | return m_node.fee_estimator->estimateSmartFee(num_blocks, calc, conservative); |
| 631 | } |
| 632 | unsigned int estimateMaxBlocks() override |
| 633 | { |
| 634 | if (!m_node.fee_estimator) return 0; |
| 635 | return m_node.fee_estimator->HighestTargetTracked(FeeEstimateHorizon::LONG_HALFLIFE); |
| 636 | } |
| 637 | CFeeRate mempoolMinFee() override |
| 638 | { |
| 639 | if (!m_node.mempool) return {}; |
no test coverage detected