| 143 | } |
| 144 | |
| 145 | bool CBlockDBCache::ReadTxIndex(const uint256 &txid, CDiskTxPos &pos) { |
| 146 | return tx_diskpos_cache.GetData(txid, pos); |
| 147 | } |
| 148 | |
| 149 | bool CBlockDBCache::SetTxIndex(const uint256 &txid, const CDiskTxPos &pos) { |
| 150 | return tx_diskpos_cache.SetData(txid, pos); |
no test coverage detected