Fix: List solvability in listunspent output and improve help
This commit is contained in:
@@ -611,7 +611,8 @@ void CWallet::AvailableCoinsForStaking(std::vector<COutput>& vCoins) const
|
||||
!IsLockedCoin((*it).first, i) && (pcoin->vout[i].nValue > 0))
|
||||
vCoins.push_back(COutput(pcoin, i, nDepth,
|
||||
((mine & ISMINE_SPENDABLE) != ISMINE_NO) ||
|
||||
(mine & ISMINE_WATCH_SOLVABLE) != ISMINE_NO));
|
||||
(mine & ISMINE_WATCH_SOLVABLE) != ISMINE_NO,
|
||||
(mine & (ISMINE_SPENDABLE | ISMINE_WATCH_SOLVABLE)) != ISMINE_NO));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user