Fix importaddress with rescan error that prevented picking up UTXOs

This commit is contained in:
Michael Toutonghi
2018-06-23 15:03:44 -07:00
parent fa733d13fa
commit 1a0fc30896

View File

@@ -1572,7 +1572,7 @@ bool CWallet::IsMine(const CTransaction& tx)
{
for (int i = 0; i < tx.vout.size(); i++)
{
if (IsMine(tx, i) == ISMINE_SPENDABLE)
if (IsMine(tx, i))
return true;
}
return false;