From f84e0350b76dc92e2cde71a21a57d0606ff4da39 Mon Sep 17 00:00:00 2001 From: blackjok3r Date: Wed, 6 Mar 2019 16:46:57 +0800 Subject: [PATCH] fix --- iguana/dpow/dpow_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iguana/dpow/dpow_rpc.c b/iguana/dpow/dpow_rpc.c index d5b9433a7..011b18738 100755 --- a/iguana/dpow/dpow_rpc.c +++ b/iguana/dpow/dpow_rpc.c @@ -546,7 +546,7 @@ int32_t dpow_txconfirms(struct supernet_info *myinfo,struct iguana_info *coin,bi cJSON *txobj; int32_t confirms = 0, ret = 0; if ( (txobj= dpow_gettransaction(myinfo, coin, txid)) != 0 ) { - rawtx= jstr(txobj, "hex")); + rawtx= jstr(txobj, "hex"); if ( (confirms= juint(txobj, "confirmations")) != 0 ) { ret = confirms;