From 90ea8770c217fdd7dba2c24386b439cebdae03fd Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 4 Sep 2018 18:39:13 -1100 Subject: [PATCH] Test --- src/cc/dapps/oraclefeed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/dapps/oraclefeed.c b/src/cc/dapps/oraclefeed.c index c227c6260..ad6becb84 100644 --- a/src/cc/dapps/oraclefeed.c +++ b/src/cc/dapps/oraclefeed.c @@ -317,7 +317,7 @@ cJSON *get_komodocli(char **retstrp,char *acname,char *method,char *arg0,char *a *retstrp = 0; if ( (jsonstr= filestr(&fsize,fname)) != 0 ) { - fprintf(stderr,"%s -> jsonstr.(%s)\n",cmdstr,jsonstr); + //fprintf(stderr,"%s -> jsonstr.(%s)\n",cmdstr,jsonstr); if ( (retjson= cJSON_Parse(jsonstr)) == 0 ) *retstrp = jsonstr; else free(jsonstr); @@ -330,7 +330,7 @@ void komodobroadcast(char *acname,cJSON *hexjson) char *hexstr,*retstr; cJSON *retjson; if ( (hexstr= jstr(hexjson,"hex")) != 0 ) { - fprintf(stderr,"hexstr.(%s)\n",hexstr); + //fprintf(stderr,"hexstr.(%s)\n",hexstr); if ( (retjson= get_komodocli(&retstr,acname,"sendrawtransaction",hexstr,"","")) != 0 ) free_json(retjson); else if ( retstr != 0 )