Browse Source

Merge pull request #326 from jl777/dev

Remove print
beta
jl777 8 years ago
committed by GitHub
parent
commit
ef0995699b
  1. 8
      iguana/dpow/dpow_network.c

8
iguana/dpow/dpow_network.c

@ -798,7 +798,13 @@ char *dex_response(int32_t *broadcastflagp,struct supernet_info *myinfo,struct d
}
//printf("DEX NOTARIES -> (%s)\n",retstr);
}
} else printf("(%s) not active\n",dexreq.name);
}
else
{
static uint32_t counter;
if ( counter++ < 10 )
printf("request came in from GUI for (%s) that is not active\n",dexreq.name);
}
if ( retstr == 0 )
return(clonestr("{\"error\":\"null return\"}"));
}

Loading…
Cancel
Save