Skip to content

Commit

Permalink
Readjust Rewards
Browse files Browse the repository at this point in the history
  • Loading branch information
copicogithub1 committed Aug 21, 2018
1 parent 881817a commit 5a3640d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1629,11 +1629,11 @@ int64_t GetBlockValue(int nHeight)
nSubsidy = 40 * COIN;
} else if (nHeight >= Params().PROTOCOL_SWITCH() && nHeight < 150200) {
nSubsidy = 50 * COIN;
} else if (nHeight >= 150200 && nHeight < 153000) {
} else if (nHeight >= 150200 && nHeight < 166600) {
nSubsidy = 30 * COIN;
} else if (nHeight >= 153000 && nHeight < 183240) {
} else if (nHeight >= 166600 && nHeight < 196840) {
nSubsidy = 60 * COIN;
} else if (nHeight >= 183240 && nHeight < 345600) {
} else if (nHeight >= 196840 && nHeight < 345600) {
nSubsidy = 40 * COIN;
} else if (nHeight >= 345600 && nHeight < 1036800) {
nSubsidy = 20 * COIN;
Expand Down

0 comments on commit 5a3640d

Please sign in to comment.