| 139 | return last_block_file_cache.SetData(nFile); |
| 140 | } |
| 141 | bool CBlockDBCache::ReadLastBlockFile(int32_t &nFile) { |
| 142 | return last_block_file_cache.GetData(nFile); |
| 143 | } |
| 144 | |
| 145 | bool CBlockDBCache::ReadTxIndex(const uint256 &txid, CDiskTxPos &pos) { |
| 146 | return tx_diskpos_cache.GetData(txid, pos); |
no test coverage detected