| 11 | |
| 12 | namespace wallet { |
| 13 | CAmount GetRequiredFee(const CWallet& wallet, unsigned int nTxBytes) |
| 14 | { |
| 15 | return GetRequiredFeeRate(wallet).GetFee(nTxBytes); |
| 16 | } |
| 17 | |
| 18 | |
| 19 | CAmount GetMinimumFee(const CWallet& wallet, unsigned int nTxBytes, const CCoinControl& coin_control, FeeCalculation* feeCalc) |
no test coverage detected