From e9113f5897a07c23d74cda079ffe314e7e871288 Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 26 Sep 2017 21:11:48 +0200 Subject: [PATCH] Test --- iguana/exchanges/LP_ordermatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/exchanges/LP_ordermatch.c b/iguana/exchanges/LP_ordermatch.c index cbbd17e38..70f49c12a 100644 --- a/iguana/exchanges/LP_ordermatch.c +++ b/iguana/exchanges/LP_ordermatch.c @@ -26,11 +26,11 @@ uint64_t LP_txfeecalc(struct iguana_info *coin,uint64_t txfee) if ( strcmp(coin->symbol,"BTC") == 0 ) { coin->rate = LP_getestimatedrate(coin); - if ( (txfee= coin->rate * LP_AVETXSIZE) < LP_MIN_TXFEE ) + if ( (txfee= coin->rate * LP_AVETXSIZE) <= LP_MIN_TXFEE ) { coin->rate = 0.; coin->rate = _LP_getestimatedrate(coin); - if ( (txfee= coin->rate * LP_AVETXSIZE) < LP_MIN_TXFEE ) + if ( (txfee= coin->rate * LP_AVETXSIZE) <= LP_MIN_TXFEE ) txfee = LP_MIN_TXFEE; } } else txfee = coin->txfee;