diff options
Diffstat (limited to 'src/dogecoin-fees.h')
| -rw-r--r-- | src/dogecoin-fees.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/dogecoin-fees.h b/src/dogecoin-fees.h new file mode 100644 index 000000000..ac55dc723 --- /dev/null +++ b/src/dogecoin-fees.h @@ -0,0 +1,14 @@ +// Copyright (c) 2021 The Dogecoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include "amount.h" +#include "chain.h" +#include "chainparams.h" + +#ifdef ENABLE_WALLET +CFeeRate GetDogecoinWalletFeeRate(); +CAmount GetDogecoinMinWalletFee(unsigned int nBytes_); +#endif +CAmount GetDogecoinMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree); +CAmount GetDogecoinDustFee(const std::vector<CTxOut> &vout, CFeeRate &baseFeeRate); |