diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 695720bca2..1a382ddbf0 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1486,7 +1486,9 @@ void CWalletTx::GetAmounts(list& listReceived, if (!ExtractDestination(txout.scriptPubKey, address) && !txout.scriptPubKey.IsUnspendable()) { - LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n", + //Don't alarm user over blank address for withdrawLocks + if (!txout.scriptPubKey.IsWithdrawLock()) + LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n", this->GetHash().ToString()); address = CNoDestination(); }