diff --git a/iguana/exchanges/LP_transaction.c b/iguana/exchanges/LP_transaction.c index 1dda1c72f..f85d2efd8 100644 --- a/iguana/exchanges/LP_transaction.c +++ b/iguana/exchanges/LP_transaction.c @@ -989,7 +989,8 @@ int64_t LP_hodlcoin_interest(int32_t coinheight,int32_t utxoheight,bits256 txid, if ( htdiff > 16830 ) htdiff = 16830; minutes = (htdiff * 154) / 60; - interest = ((nValue * minutes) / 10743920); + interest = nValue * htdiff * 0.000000238418; + //interest = ((nValue * minutes) / 10743920); } return(interest); }