Browse Source

Fix importaddress with rescan error that prevented picking up UTXOs

pull/4/head
Michael Toutonghi 6 years ago
parent
commit
1a0fc30896
  1. 2
      src/wallet/wallet.cpp

2
src/wallet/wallet.cpp

@ -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;

Loading…
Cancel
Save