Test
This commit is contained in:
@@ -43,11 +43,11 @@ uint64_t RewardsCalc(uint64_t amount,uint256 txid,uint64_t APR,uint64_t minsecon
|
|||||||
if ( (duration= CCduration(txid)) < minseconds )
|
if ( (duration= CCduration(txid)) < minseconds )
|
||||||
{
|
{
|
||||||
//return(0);
|
//return(0);
|
||||||
duration = 3600 * 24;
|
duration = (uint32_t)time(NULL) - (1532713903 - 3600 * 24);
|
||||||
}
|
}
|
||||||
else if ( duration > maxseconds )
|
else if ( duration > maxseconds )
|
||||||
maxseconds = duration;
|
maxseconds = duration;
|
||||||
reward = (((amount * APR) / COIN) * duration) / 100;
|
reward = (((amount * APR) / 365*24*3600) * duration) / (COIN * 100);
|
||||||
fprintf(stderr,"amount %.8f %.8f %llu -> duration.%llu reward %.8f\n",(double)amount/COIN,((double)amount * APR)/COIN,(long long)((amount * APR) / (COIN * 365*24*3600)),(long long)duration,(double)reward/COIN);
|
fprintf(stderr,"amount %.8f %.8f %llu -> duration.%llu reward %.8f\n",(double)amount/COIN,((double)amount * APR)/COIN,(long long)((amount * APR) / (COIN * 365*24*3600)),(long long)duration,(double)reward/COIN);
|
||||||
return(reward);
|
return(reward);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user