Skip to content

Commit

Permalink
Hard limit closer to 21M
Browse files Browse the repository at this point in the history
  • Loading branch information
ixcoin committed Aug 16, 2011
1 parent 1b01899 commit 9a19b3f
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 @@ -642,7 +642,7 @@ int64 static GetBlockValue(int nHeight, int64 nFees)
nSubsidy >>= (nHeight / 210000);

//Hard limit to 21M Ixcoins
if (nHeight >= 218750)
if (nHeight >= 227499)
nSubsidy = 0;

return nSubsidy + nFees;
Expand Down

0 comments on commit 9a19b3f

Please sign in to comment.