aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorS3RK <1466284+S3RK@users.noreply.github.com>2021-06-24 08:37:09 +0200
committerS3RK <1466284+S3RK@users.noreply.github.com>2021-06-29 08:16:39 +0200
commit6084d2caed9b2c70c0f19898c33ecb141fe603c8 (patch)
tree301303577ac863e723603836bd642415014e372a /src/wallet
parent3f56ef7bef22f0c8c94ad7e401d50b188dae2cbe (diff)
downloadbitcoin-6084d2caed9b2c70c0f19898c33ecb141fe603c8.tar.xz
wallet: do not spam about non-existent spk managers
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet.cpp1
1 files changed, 0 insertions, 1 deletions
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<OutputType, ScriptPubKeyMan*>& spk_managers = internal ? m_internal_spk_managers : m_external_spk_managers;
std::map<OutputType, ScriptPubKeyMan*>::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<int>(type));
return nullptr;
}
return it->second;