thanks
Uh ok...sure
Here ya go : Starts at line 995 in main.cpp
// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees)
{
// int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + ;
int64_t nSubsidy = 1000 * COIN;
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);
return nSubsidy + nFees;
}
Extremly nice and fast, thanks for the answer