diff options
| author | Ross Nicoll <[email protected]> | 2018-01-10 08:43:05 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2018-09-19 21:09:16 +0100 |
| commit | 3d363eccd436df49bcdfccf01bcd5148ba3cfb87 (patch) | |
| tree | 1f045afcb027093b6261f5e2ddd179664fd13d64 /src/dogecoin.h | |
| parent | Always use parameters at block 0 to get genesis block hash (#1416) (diff) | |
| download | discoin-3d363eccd436df49bcdfccf01bcd5148ba3cfb87.tar.xz discoin-3d363eccd436df49bcdfccf01bcd5148ba3cfb87.zip | |
Bring 1.14 fees in line with 1.10 (#1425)
* Disable free transactions
* Updating remaining fee calculation constants
* Round up to the nearest 1k, not up 1k so the UI fee estimator is correct
Diffstat (limited to 'src/dogecoin.h')
| -rw-r--r-- | src/dogecoin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dogecoin.h b/src/dogecoin.h index 3bc63635d..45dc7fc79 100644 --- a/src/dogecoin.h +++ b/src/dogecoin.h @@ -18,5 +18,6 @@ unsigned int CalculateDogecoinNextWorkRequired(const CBlockIndex* pindexLast, in */ bool CheckAuxPowProofOfWork(const CBlockHeader& block, const Consensus::Params& params); +unsigned int GetDogecoinTxSize(const unsigned int nTxBytes); CAmount GetDogecoinMinRelayFee(const CTransaction& tx, unsigned int nBytes, bool fAllowFree); CAmount GetDogecoinDustFee(const std::vector<CTxOut> &vout, CFeeRate &baseFeeRate); |