Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cropdev committed Feb 20, 2018
1 parent 788e198 commit 8634adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ int64_t GetProofOfWorkReward(int nHeight, int64_t nFees)
nSubsidy = 2000000 * COIN;
} else if (nHeight > 1 && nHeight <= 4000) {
nSubsidy = 20 * COIN;
} else if (nHeight > 40000 && nHeight <= 20000) {
} else if (nHeight > 4000 && nHeight <= 20000) {
nSubsidy = 15 * COIN;
}

Expand Down

0 comments on commit 8634adf

Please sign in to comment.