From 6084d2caed9b2c70c0f19898c33ecb141fe603c8 Mon Sep 17 00:00:00 2001 From: S3RK <1466284+S3RK@users.noreply.github.com> Date: Thu, 24 Jun 2021 08:37:09 +0200 Subject: [PATCH] wallet: do not spam about non-existent spk managers --- src/wallet/wallet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index c2586b60b8..42be172b81 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2962,7 +2962,6 @@ ScriptPubKeyMan* CWallet::GetScriptPubKeyMan(const OutputType& type, bool intern const std::map& spk_managers = internal ? m_internal_spk_managers : m_external_spk_managers; std::map::const_iterator it = spk_managers.find(type); if (it == spk_managers.end()) { - WalletLogPrintf("%s scriptPubKey Manager for output type %d does not exist\n", internal ? "Internal" : "External", static_cast(type)); return nullptr; } return it->second;