From 39a858e85c1fbede432ca1d2bad3b7e42d7feee9 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 20 Nov 2016 19:42:59 -0300 Subject: [PATCH] test --- iguana/dpow/dpow_rpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iguana/dpow/dpow_rpc.c b/iguana/dpow/dpow_rpc.c index 68e453319..843450b74 100755 --- a/iguana/dpow/dpow_rpc.c +++ b/iguana/dpow/dpow_rpc.c @@ -27,7 +27,7 @@ int32_t komodo_notaries(char *symbol,uint8_t pubkeys[64][33],int32_t height) { if ( (retjson= cJSON_Parse(retstr)) != 0 ) { - printf("%s\n",retstr); + //printf("%s\n",retstr); if ( (array= jarray(&num,retjson,"notaries")) != 0 ) { if ( num > 64 ) @@ -42,6 +42,7 @@ int32_t komodo_notaries(char *symbol,uint8_t pubkeys[64][33],int32_t height) decode_hex(pubkeys[i],33,pubkeystr); else printf("error i.%d of %d (%s)\n",i,num,pubkeystr!=0?pubkeystr:""); } + printf("notaries.[%d] <- ht.%d\n",num,height); } free_json(retjson); }