From 8bbc6241a5b57b4a0133c3c3a6418a20dd083763 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 22 Oct 2016 10:55:09 -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 d1811a04e..69f340d13 100644 --- a/src/komodo_interest.h +++ b/src/komodo_interest.h @@ -5,7 +5,7 @@ uint64_t komodo_interest(uint64_t nValue,uint32_t nLockTime,uint32_t tiptime) { - int32_t minutes; uint64_t interest = 0; + int32_t minutes; uint64_t numerator,denominator,interest = 0; if ( nLockTime >= LOCKTIME_THRESHOLD && tiptime != 0 && nLockTime < tiptime && nValue >= COIN ) { minutes = (tiptime - nLockTime) / 60;