| 47 | } |
| 48 | |
| 49 | Amount CFeeRate::GetFee(size_t nBytes) const { |
| 50 | return ::GetFee<false>(nBytes, nSatoshisPerK); |
| 51 | } |
| 52 | |
| 53 | Amount CFeeRate::GetFeeCeiling(size_t nBytes) const { |
| 54 | return ::GetFee<true>(nBytes, nSatoshisPerK); |
no outgoing calls
no test coverage detected