| 31 | } |
| 32 | |
| 33 | CFeeRate GetRequiredFeeRate(const CWallet& wallet) |
| 34 | { |
| 35 | return std::max(wallet.m_min_fee, ::minRelayTxFee); |
| 36 | } |
| 37 | |
| 38 | CFeeRate GetMinimumFeeRate(const CWallet& wallet, const CCoinControl& coin_control, const CTxMemPool& pool, const CBlockPolicyEstimator& estimator, FeeCalculation* feeCalc) |
| 39 | { |
no test coverage detected