| 262 | } |
| 263 | |
| 264 | bool CCoinsViewDBCursor::GetKey(COutPoint &key) const |
| 265 | { |
| 266 | // Return cached key |
| 267 | if (keyTmp.first == DB_COIN) { |
| 268 | key = keyTmp.second; |
| 269 | return true; |
| 270 | } |
| 271 | return false; |
| 272 | } |
| 273 | |
| 274 | bool CCoinsViewDBCursor::GetValue(Coin &coin) const |
| 275 | { |
no outgoing calls
no test coverage detected