mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
fix logic for error log
This commit is contained in:
parent
c611acc38a
commit
d812daf967
1 changed files with 1 additions and 1 deletions
|
@ -1035,7 +1035,7 @@ void CWalletTx::GetAmounts(list<COutputEntry>& listReceived,
|
|||
// In either case, we need to get the destination address
|
||||
CTxDestination address;
|
||||
|
||||
if (!ExtractDestination(txout.scriptPubKey, address) && txout.scriptPubKey.IsUnspendable())
|
||||
if (!ExtractDestination(txout.scriptPubKey, address) && !txout.scriptPubKey.IsUnspendable())
|
||||
{
|
||||
LogPrintf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
|
||||
this->GetHash().ToString());
|
||||
|
|
Loading…
Add table
Reference in a new issue