diff options
| author | Ross Nicoll <[email protected]> | 2015-06-25 11:28:31 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2018-09-19 19:21:49 +0100 |
| commit | 8c0468c2d227e484f36ff24e3e420ad84312203a (patch) | |
| tree | 04a65bbfdc89d768341faa7a5a011482dec53402 /src/dogecoin.h | |
| parent | Replace consensus values with Dogecoin equivalents (diff) | |
| download | discoin-8c0468c2d227e484f36ff24e3e420ad84312203a.tar.xz discoin-8c0468c2d227e484f36ff24e3e420ad84312203a.zip | |
Add Dogecoin block subsidy calculations.
Diffstat (limited to 'src/dogecoin.h')
| -rw-r--r-- | src/dogecoin.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dogecoin.h b/src/dogecoin.h new file mode 100644 index 000000000..50a63076d --- /dev/null +++ b/src/dogecoin.h @@ -0,0 +1,8 @@ +// Copyright (c) 2015 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 "chainparams.h" +#include "amount.h" + +CAmount GetDogecoinBlockSubsidy(int nHeight, const Consensus::Params& consensusParams, uint256 prevHash); |