| 2674 | } |
| 2675 | |
| 2676 | bool CWallet::IsLockedCoin(uint256 hash, unsigned int n) const |
| 2677 | { |
| 2678 | AssertLockHeld(cs_wallet); |
| 2679 | COutPoint outpt(hash, n); |
| 2680 | |
| 2681 | return (setLockedCoins.count(outpt) > 0); |
| 2682 | } |
| 2683 | |
| 2684 | void CWallet::ListLockedCoins(std::vector<COutPoint>& vOutpts) const |
| 2685 | { |
no test coverage detected