Browse Source

Test

etomic
jl777 8 years ago
parent
commit
920a7a2228
  1. 3
      iguana/exchanges/LP_commands.c

3
iguana/exchanges/LP_commands.c

@ -71,13 +71,12 @@ char *stats_JSON(void *ctx,char *myipaddr,int32_t pubsock,cJSON *argjson,char *r
//printf("got hello from %s:%u\n",ipaddr!=0?ipaddr:"",argport); //printf("got hello from %s:%u\n",ipaddr!=0?ipaddr:"",argport);
return(0); return(0);
} }
else*/ if ( strcmp(method,"sendmessage") == 0 ) else*/ if ( strcmp(method,"sendmessage") == 0 && jobj(argjson,"userpass") == 0 )
{ {
static char *laststr; static char *laststr;
char *newstr; bits256 pubkey = jbits256(argjson,"pubkey"); char *newstr; bits256 pubkey = jbits256(argjson,"pubkey");
if ( bits256_nonz(pubkey) == 0 || bits256_cmp(pubkey,LP_mypub25519) == 0 ) if ( bits256_nonz(pubkey) == 0 || bits256_cmp(pubkey,LP_mypub25519) == 0 )
{ {
jdelete(argjson,"userpass");
newstr = jprint(argjson,0); newstr = jprint(argjson,0);
if ( laststr == 0 || strcmp(laststr,newstr) != 0 ) if ( laststr == 0 || strcmp(laststr,newstr) != 0 )
{ {

Loading…
Cancel
Save