Skip to content

Commit

Permalink
Testnet reward removed. Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
evgen-x committed Dec 24, 2018
1 parent fba2c2b commit 25c3738
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 3)
define(_CLIENT_VERSION_BUILD, 71)
define(_CLIENT_VERSION_REVISION, 4)
define(_CLIENT_VERSION_BUILD, 73)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([PDG Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[privatedatagram.io],[pdg])
Expand Down
3 changes: 3 additions & 0 deletions src/main.cpp
Expand Up @@ -2211,6 +2211,9 @@ int64_t GetBlockValue(int nHeight)
if (Params().NetworkID() == CBaseChainParams::TESTNET) {
if (nHeight < 200 && nHeight > 0)
return 500 * COIN;

if (nHeight > 40000)
return 0;
}

int64_t nSubsidy = 0;
Expand Down

0 comments on commit 25c3738

Please sign in to comment.