From 096ddb41ec7dbeae353445da38420a2677332cae Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 16 Jan 2017 03:03:09 +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 0c27d4c6b..0cdab11eb 100644 --- a/src/komodo_interest.h +++ b/src/komodo_interest.h @@ -75,7 +75,7 @@ uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uin denominator = (((uint64_t)365 * 24 * 60) / minutes); if ( denominator == 0 ) denominator = 1; // max KOMODO_INTEREST per transfer, do it at least annually! - if ( nValue > 25000LL*COIN ) + if ( nValue > 25000LL*COIN && txheight > 155949 ) { numerator = (nValue / 20); // assumes 5%! interest = (numerator / denominator);