From d9fb711d4bcc4d306ef18117e53ab776f0087d14 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 29 May 2017 19:13:39 +0300 Subject: [PATCH] Test --- iguana/exchanges/LP_nativeDEX.c | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/iguana/exchanges/LP_nativeDEX.c b/iguana/exchanges/LP_nativeDEX.c index 396cd2481..7777d1ad8 100644 --- a/iguana/exchanges/LP_nativeDEX.c +++ b/iguana/exchanges/LP_nativeDEX.c @@ -732,7 +732,7 @@ uint64_t LP_privkey_init(struct LP_peerinfo *mypeer,int32_t mypubsock,char *symb void LP_mainloop(struct LP_peerinfo *mypeer,uint16_t mypubport,int32_t pubsock,int32_t pullsock,uint16_t myport,int32_t amclient,char *passphrase,double profitmargin) { - char *retstr,*utxostr; int32_t i,len,recvsize,nonz,lastn; struct LP_peerinfo *peer,*tmp; void *ptr; cJSON *argjson; + char *retstr,*utxostr; int32_t i,n,len,recvsize,nonz,lastn; struct LP_peerinfo *peer,*tmp; void *ptr; cJSON *argjson,*array,*reqjson,*item; for (i=amclient; i 25 ) @@ -750,10 +750,37 @@ void LP_mainloop(struct LP_peerinfo *mypeer,uint16_t mypubport,int32_t pubsock,i LP_privkey_init(mypeer,pubsock,"KMD",passphrase,"",amclient); if ( amclient != 0 ) { + nonz = 0; HASH_ITER(hh,LP_peerinfos,peer,tmp) { - utxostr = issue_LP_clientgetutxos(peer->ipaddr,peer->port,"KMD",10); - printf("%s:%u %s\n",peer->ipaddr,peer->port,utxostr); + if ( (utxostr= issue_LP_clientgetutxos(peer->ipaddr,peer->port,"KMD",10)) != 0 ) + { + printf("%s:%u %s\n",peer->ipaddr,peer->port,utxostr); + if ( (array= cJSON_Parse(utxostr)) != 0 ) + { + if ( is_cJSON_Array(array) != 0 && (n= cJSON_GetArraySize(array)) > 0 ) + { + for (i=0; i<1; i++) + { + item = jitem(array,i); + reqjson = cJSON_CreateObject(); + jaddbits256(reqjson,"txid",jbits256(item,"txid")); + jaddnum(reqjson,"vout",jint(item,"vout")); + jaddstr(reqjson,"base",jstr(item,"base")); + jaddstr(reqjson,"rel","BTC"); + jaddstr(reqjson,"method","price"); + //5.9.253.196:7779 [{"ipaddr":"5.9.253.196","port":7779,"profit":0.01064000,"coin":"KMD","address":"RFQn4gNG555woQWQV1wPseR47spCduiJP5","script":"76a914434009423522682bd7cc1b18a614c3096d19683188ac","txid":"f5d5e2eb4ef85c78f95076d0d2d99af9e1b85968e57b3c7bdb282bd005f7c341","vout":1,"value":100,"deposit":"07902a65d11f0f577a0346432bcd2b6b53de5554c314209d1964693962524d69","dvout":1,"dvalue":120}] + + LP_send(peer->pushsock,jprint(reqjson,1),1); + nonz = 1; + } + } + free_json(array); + } + free(utxostr); + } + if ( nonz != 0 ) + break; } printf("peers\n"); while ( 1 )