From 5e976248eee5b827b3829f94fdd1166addfd01d3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 21 Nov 2016 16:40:13 -0300 Subject: [PATCH] test --- iguana/dpow/dpow_rpc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iguana/dpow/dpow_rpc.c b/iguana/dpow/dpow_rpc.c index ee541efc3..01a1d4ac4 100755 --- a/iguana/dpow/dpow_rpc.c +++ b/iguana/dpow/dpow_rpc.c @@ -98,10 +98,12 @@ int32_t dpow_paxpending(uint8_t *hex) if ( (retjson= cJSON_Parse(retstr)) != 0 ) { if ( (hexstr= jstr(retjson,"withdraws")) != 0 && (n= is_hexstr(hexstr,0)) > 0 ) + { + printf("PAXPENDING.(%s)\n",retstr); decode_hex(hex,n,hexstr); + } free_json(retjson); } - printf("PAXPENDING.(%s)\n",retstr); free(retstr); } else printf("dpow_paxpending: paxwithdraw null return\n"); } else printf("dpow_paxpending: KMD FULLNODE.%d\n",coin->FULLNODE);