From 597171f2ee06a443070739cc48a27a980482b24a Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Tue, 31 Dec 2019 10:52:11 -0500 Subject: [PATCH] Forgotten %s --- src/wallet/asyncrpcoperation_sendmany.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.cpp b/src/wallet/asyncrpcoperation_sendmany.cpp index 5762a3f36..82a7c9212 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/src/wallet/asyncrpcoperation_sendmany.cpp @@ -540,7 +540,7 @@ bool AsyncRPCOperation_sendmany::main_impl() { UniValue params = UniValue(UniValue::VARR); params.push_back(signedtxn); if(fZdebug) - LogPrintf("%s: Sending raw xtn with txid=\n", __FUNCTION__, tx_.GetHash().ToString().c_str()); + LogPrintf("%s: Sending raw xtn with txid=%s\n", __FUNCTION__, tx_.GetHash().ToString().c_str()); UniValue sendResultValue = sendrawtransaction(params, false, CPubKey()); if (sendResultValue.isNull()) { throw JSONRPCError(RPC_WALLET_ERROR, "sendrawtransaction did not return an error or a txid.");