Browse Source

Test

etomic
jl777 8 years ago
parent
commit
a5dd4ce71e
  1. 3
      iguana/exchanges/LP_rpc.c

3
iguana/exchanges/LP_rpc.c

@ -354,7 +354,8 @@ cJSON *LP_gettxout(char *symbol,bits256 txid,int32_t vout)
cJSON *LP_listunspent(char *symbol,char *coinaddr) cJSON *LP_listunspent(char *symbol,char *coinaddr)
{ {
char buf[128]; cJSON *retjson; struct iguana_info *coin = LP_coinfind(symbol); char buf[128]; cJSON *retjson; struct iguana_info *coin = LP_coinfind(symbol);
if ( coin == 0 ) printf("LP_listunspent.(%s %s)\n",symbol,coinaddr);
if ( coin == 0 || coin->inactive != 0 )
return(cJSON_Parse("{\"error\":\"no coin\"}")); return(cJSON_Parse("{\"error\":\"no coin\"}"));
if ( coin->electrum == 0 ) if ( coin->electrum == 0 )
{ {

Loading…
Cancel
Save