Skip to content

Commit

Permalink
VERSION 1.1.1 - Block Rewards Fix
Browse files Browse the repository at this point in the history
Block Reward Fix
-----------
Due to application of budget since block 6001-6002, this fix will avoid any synchronisation problem.
  • Loading branch information
RAPIDCoinNew committed Jan 14, 2019
1 parent 0687598 commit a77ddd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
Expand Down
14 changes: 7 additions & 7 deletions src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1238,19 +1238,19 @@ CAmount GetBlockSubsidy(int nPrevBits, int nPrevHeight, const Consensus::Params&
} else if (nHeight <= 100000) {
nSubsidyBase = 750;
} else if (nHeight <= 150000) {
nSubsidyBase = 550;
nSubsidyBase = 645;
} else if (nHeight <= 750000) {
nSubsidyBase = 400;
nSubsidyBase = 510;
} else if (nHeight <= 1450000) {
nSubsidyBase = 250;
nSubsidyBase = 375;
} else if (nHeight <= 2000000) {
nSubsidyBase = 100;
nSubsidyBase = 240;
} else if (nHeight <= 2450000) {
nSubsidyBase = 72.5;
nSubsidyBase = 215.25;
} else if (nHeight <= 2900000) {
nSubsidyBase = 45;
nSubsidyBase = 190.5;
} else{
nSubsidyBase = 17.5;
nSubsidyBase = 165.75;
}

CAmount nSubsidy = nSubsidyBase * COIN;
Expand Down

0 comments on commit a77ddd3

Please sign in to comment.