From d708378c75e6cd42a86e82e1f75be2d70f3e823f Mon Sep 17 00:00:00 2001 From: Artem Pikulin Date: Fri, 30 Mar 2018 16:52:26 +0700 Subject: [PATCH] Do not do autosplit temporary. --- 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 9c7d029ff..fab82a94c 100644 --- a/iguana/exchanges/LP_ordermatch.c +++ b/iguana/exchanges/LP_ordermatch.c @@ -1489,9 +1489,9 @@ char *LP_autobuy(void *ctx,int32_t fomoflag,char *myipaddr,int32_t mypubsock,cha if ( time(NULL) > relcoin->lastautosplit+300 ) { relcoin->lastautosplit = (uint32_t)time(NULL); - return(LP_autosplit(relcoin)); + //return(LP_autosplit(relcoin)); } - return(clonestr("{\"error\":\"not enough utxo, please make more deposits\"}")); + //return(clonestr("{\"error\":\"not enough utxo, please make more deposits\"}")); } LP_txfees(&txfee,&desttxfee,base,rel); if ( txfee != 0 && txfee < 10000 )