Skip to content

Commit

Permalink
42-coin-limit
Browse files Browse the repository at this point in the history
Added one line to admit only fees after block 990382.  This keeps total coins in circulation at EXACTLY 42 LIKE THE NAME OF THE COIN.
  • Loading branch information
funkshelper committed Jul 19, 2015
1 parent 2fafd66 commit b007a96
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,10 @@ int64 static GetBlockValue(int nHeight, int64 nFees)
{
nSubsidy = 0.00042 * COIN;
}
if(nHeight >= 990382)
{
nSubsidy = 0.00;
}
return nSubsidy + nFees;
}

Expand Down

1 comment on commit b007a96

@funkshelper
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anybody home?

Please sign in to comment.