From d81ab5c9c752ed6f6b66a51fd9b95a2ebb58902b Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sat, 14 Mar 2020 10:45:04 -0400 Subject: [PATCH] I think this should fix some compile issues --- src/wallet/asyncrpcoperation_saplingconsolidation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wallet/asyncrpcoperation_saplingconsolidation.cpp b/src/wallet/asyncrpcoperation_saplingconsolidation.cpp index f8d6b017a..80034b109 100644 --- a/src/wallet/asyncrpcoperation_saplingconsolidation.cpp +++ b/src/wallet/asyncrpcoperation_saplingconsolidation.cpp @@ -181,21 +181,21 @@ bool AsyncRPCOperation_saplingconsolidation::main_impl() { // Add the actual consolidation tx builder.AddSaplingOutput(extsk.expsk.ovk, addr, amountToSend - fConsolidationTxFee); - LogPrint("zrpcunsafe", "%s: Added consolidation output", getId(), addr); + LogPrint("zrpcunsafe", "%s: Added consolidation output %s", getId(), addr); // Add sietch zouts int MIN_ZOUTS = 7; for(size_t i = 0; i < MIN_ZOUTS; i++) { // In Privacy Zdust We Trust -- Duke string zdust = randomSietchZaddr(); - LogPrint("zrpcunsafe", "%s: Adding sietch output", getId(), zdust); + LogPrint("zrpcunsafe", "%s: Adding sietch output %s", getId(), zdust); auto zaddr = DecodePaymentAddress(zdust); if (IsValidPaymentAddress(zaddr)) { auto sietchZoutput = boost::get(zaddr); CAmount amount=0; builder.AddSaplingOutput(extsk.expsk.ovk, sietchZoutput, amount); } else { - LogPrint("zrpcunsafe", "%s: Invalid payment address! Stopping.", getId(), zaddr); + LogPrint("zrpcunsafe", "%s: Invalid payment address %s! Stopping.", getId(), zaddr); break; } }