Merge pull request #73 from VerusCoin/dev

Fix importaddress with rescan error that prevented picking up UTXOs
This commit is contained in:
Asher Dawes
2018-06-24 13:58:45 -07:00
committed by GitHub

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;