From bc9a6104a9250f6cef534e7bfa8246d00e0926d3 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Wed, 20 Mar 2019 10:16:12 -0400 Subject: [PATCH] Fixup wallet log print --- src/wallet/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 224c3e78dd..7f43048860 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3013,7 +3013,7 @@ static UniValue listunspent(const JSONRPCRequest& request) CAsset assetid = out.tx->GetOutputAsset(out.i); // Only list known outputs that match optional filter if (g_con_elementsmode && (amount < 0 || assetid.IsNull())) { - LogPrintf("wallet", "Unable to unblind output: %s:%d\n", out.tx->tx->GetHash().GetHex(), out.i); + wallet->WalletLogPrintf("Unable to unblind output: %s:%d\n", out.tx->tx->GetHash().GetHex(), out.i); continue; } if (!asset_str.empty() && asset_filter != assetid) {