From 8fa5e1fff16c70e82402e86606df232a35184ec7 Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 15 Nov 2016 16:55:44 -0300 Subject: [PATCH] test --- src/komodo_interest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komodo_interest.h b/src/komodo_interest.h index 226b78896..afbc9fcf8 100644 --- a/src/komodo_interest.h +++ b/src/komodo_interest.h @@ -68,7 +68,7 @@ uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uin denominator = 1; // max KOMODO_INTEREST per transfer, do it at least annually! interest = (numerator / denominator) / COIN; fprintf(stderr,"komodo_interest %lld %.8f nLockTime.%u tiptime.%u minutes.%d interest %lld %.8f (%llu / %llu)\n",(long long)nValue,(double)nValue/COIN,nLockTime,tiptime,minutes,(long long)interest,(double)interest/COIN,(long long)numerator,(long long)denominator); - + } } return(interest); }