From d1ceb5c250049de928576e6d957271a002cb0173 Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 17 Mar 2017 18:27:02 +0200 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 551a31ec4..2aa745070 100644 --- a/src/komodo_interest.h +++ b/src/komodo_interest.h @@ -104,7 +104,7 @@ uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uin if ( exception == 0 ) { numerator = (nValue / 20); // assumes 5%! - if ( txheight < 30000 ) + if ( txheight < 300000 ) interest = (numerator / denominator); else interest = (numerator * minutes) / ((uint64_t)365 * 24 * 60); }