From 4bbabc13003b51868b73e4be0cd52b7d627b6c3f Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 19 Nov 2018 08:52:44 -1100 Subject: [PATCH] Fix print --- src/cc/oracles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/oracles.cpp b/src/cc/oracles.cpp index dd5b763c1..5bee9ce86 100644 --- a/src/cc/oracles.cpp +++ b/src/cc/oracles.cpp @@ -235,7 +235,7 @@ int64_t OracleDatafee(CScript &scriptPubKey,uint256 oracletxid,CPubKey publisher } else { - fprintf(stderr,"Could not decode op_ret from transaction %x\nscriptPubKey: %s\n", oracletxid, oracletx.vout[numvouts-1].scriptPubKey.ToString().c_str()); + fprintf(stderr,"Could not decode op_ret from transaction %s\nscriptPubKey: %s\n", oracletxid.GetHex().c_str(), oracletx.vout[numvouts-1].scriptPubKey.ToString().c_str()); } } return(datafee);