| 4047 | } |
| 4048 | |
| 4049 | void CWallet::LockCoin(const COutPoint& output) |
| 4050 | { |
| 4051 | AssertLockHeld(cs_wallet); // setLockedCoins |
| 4052 | setLockedCoins.insert(output); |
| 4053 | } |
| 4054 | |
| 4055 | void CWallet::UnlockCoin(COutPoint& output) |
| 4056 | { |
no test coverage detected