From 203b976a9ee8786df1bd8742ff558448066d74fe Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 23 Jul 2017 11:09:07 +0200 Subject: [PATCH] Test --- iguana/exchanges/LP_rpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/exchanges/LP_rpc.c b/iguana/exchanges/LP_rpc.c index e6f8a6478..20b07a2e4 100644 --- a/iguana/exchanges/LP_rpc.c +++ b/iguana/exchanges/LP_rpc.c @@ -341,8 +341,8 @@ double LP_getestimatedrate(char *symbol) } free(retstr); } - } else rate = coin->txfee / LP_AVETXSIZE; - return(rate); + } else rate = (double)coin->txfee / LP_AVETXSIZE; + return(SATOSHIDEN * rate); } uint64_t LP_txfee(char *symbol)