| 33 | } |
| 34 | |
| 35 | bool CCoins::Spend(uint32_t nPos) |
| 36 | { |
| 37 | if (nPos >= vout.size() || vout[nPos].IsNull()) |
| 38 | return false; |
| 39 | vout[nPos].SetNull(); |
| 40 | Cleanup(); |
| 41 | return true; |
| 42 | } |
| 43 | |
| 44 | bool CCoinsView::GetCoins(const uint256 &txid, CCoins &coins) const { return false; } |
| 45 | bool CCoinsView::HaveCoins(const uint256 &txid) const { return false; } |
no test coverage detected