From 009bedbef6d43af719ae97786cc04303e393b58c Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 27 Jul 2018 06:39:49 -1100 Subject: [PATCH] Test --- src/cc/rewards.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/rewards.cpp b/src/cc/rewards.cpp index 3613864cf..c0020594c 100644 --- a/src/cc/rewards.cpp +++ b/src/cc/rewards.cpp @@ -47,8 +47,8 @@ uint64_t RewardsCalc(uint64_t amount,uint256 txid,uint64_t APR,uint64_t minsecon } else if ( duration > maxseconds ) maxseconds = duration; - reward = (((amount * APR) / COIN) / 365*24*3600) * duration; - 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); + reward = ((amount * APR) / 365*24*3600);// * duration; + fprintf(stderr,"amount %.8f %.8f %llu -> duration.%llu reward %.8f\n",(double)amount/COIN,((double)amount * APR)/COIN,(long long)((amount * APR) / 365*24*3600),(long long)duration,(double)reward/COIN); return(reward); }