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