* Return the fee in satoshis for a vsize of 1000 vbytes */
| 60 | * Return the fee in satoshis for a vsize of 1000 vbytes |
| 61 | */ |
| 62 | CAmount GetFeePerK() const { return CAmount(m_feerate.EvaluateFeeDown(1000)); } |
| 63 | friend std::strong_ordering operator<=>(const CFeeRate& a, const CFeeRate& b) noexcept |
| 64 | { |
| 65 | return ByRatio{a.m_feerate} <=> ByRatio{b.m_feerate}; |