diff options
Diffstat (limited to 'src/amount.h')
| -rw-r--r-- | src/amount.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/amount.h b/src/amount.h index e6e503905..02d61fc9b 100644 --- a/src/amount.h +++ b/src/amount.h @@ -46,10 +46,14 @@ public: CFeeRate(const CAmount& nFeePaid, size_t nBytes); CFeeRate(const CFeeRate& other) { nSatoshisPerK = other.nSatoshisPerK; } /** - * Return the fee in satoshis for the given size in bytes. + * Return the wallet fee in koinus for the given size in bytes. */ CAmount GetFee(size_t nBytes) const; /** + * Return the relay fee in koinus for the given size in bytes. + */ + CAmount GetRelayFee(size_t nBytes) const; + /** * Return the fee in satoshis for a size of 1000 bytes */ CAmount GetFeePerK() const { return GetFee(1000); } |