aboutsummaryrefslogtreecommitdiff
path: root/src/dogecoin-fees.h
blob: 501b6fe62717ba9e4e4458ddbf541e5bbda5fb61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2021 The Discoin 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 GetDiscoinWalletFeeRate();
CAmount GetDiscoinMinWalletFee(unsigned int nBytes_);
#endif
CAmount GetDiscoinMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree);
CAmount GetDiscoinDustFee(const std::vector<CTxOut> &vout, CFeeRate &baseFeeRate);