From 72892f33f0ac2c0e54c924fd7a0b1ffce12f42bd Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 5 Dec 2017 12:49:11 +0400 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 b2520d41e..b9e922832 100644 --- a/iguana/exchanges/LP_rpc.c +++ b/iguana/exchanges/LP_rpc.c @@ -388,7 +388,7 @@ cJSON *LP_listunspent(char *symbol,char *coinaddr,bits256 reftxid,bits256 reftxi return(cJSON_Parse("{\"error\":\"no coin\"}")); if ( coin->electrum == 0 ) { - if ( (ap= LP_addressfind(coin,symbol)) != 0 ) + if ( (ap= LP_addressfind(coin,coinaddr)) != 0 ) { if ( ap->unspenttime == 0 ) usecache = 0; @@ -407,7 +407,7 @@ cJSON *LP_listunspent(char *symbol,char *coinaddr,bits256 reftxid,bits256 reftxi numconfs = 0; else numconfs = 1; sprintf(buf,"[%d, 99999999, [\"%s\"]]",numconfs,coinaddr); -printf("LP_listunspent.(%s %s)\n",symbol,coinaddr); +//printf("LP_listunspent.(%s %s)\n",symbol,coinaddr); retjson = bitcoin_json(coin,"listunspent",buf); retstr = jprint(retjson,0); LP_unspents_cache(coin->symbol,coinaddr,retstr,1);