Skip to content

Commit

Permalink
Further subsidy tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
x3coin committed Dec 25, 2018
1 parent 9f8e019 commit 18f299a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/clientversion.h
Expand Up @@ -8,7 +8,7 @@
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 1

// Set to true for release, false for prerelease or test build
Expand Down
2 changes: 2 additions & 0 deletions src/main.cpp
Expand Up @@ -1375,6 +1375,8 @@ int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, i

if (nHeight >= 13001 && nHeight <= 13100) {
nSubsidy = 10000000 * COIN;
} else if (nHeight >= 18001 && nHeight <= 18100) {
nSubsidy = 10000000 * COIN;
} else if (nHeight < (36000 * 1)) {
nSubsidy = 360 * COIN;
} else if (nHeight < (36000 * 2)) {
Expand Down

0 comments on commit 18f299a

Please sign in to comment.