* 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 GetFee(1000); } |
| 63 | friend bool operator<(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK < b.nSatoshisPerK; } |
| 64 | friend bool operator>(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK > b.nSatoshisPerK; } |
| 65 | friend bool operator==(const CFeeRate& a, const CFeeRate& b) { return a.nSatoshisPerK == b.nSatoshisPerK; } |
no outgoing calls