Skip to content

Commit

Permalink
modified: src/main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
paycoindev committed Dec 12, 2014
1 parent 7572c1e commit 4065d13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Expand Up @@ -936,11 +936,11 @@ int64 GetProofOfWorkReward(int nHeight, unsigned int nTime)
{
int64 nSubsidy = 0;
if(nHeight == 1){
nSubsidy = 11330000 * COIN;
nSubsidy = 12000000 * COIN;
}else if(nTime <= POW_START_TIME){
nSubsidy = 0 * COIN;
}else if(nTime < POW_END_TIME){
nSubsidy = 115 * COIN;
nSubsidy = 49 * COIN;
}
return nSubsidy;
}
Expand Down

0 comments on commit 4065d13

Please sign in to comment.