| 166 | } |
| 167 | |
| 168 | bool CBlockTreeDB::ReadTxIndex(const uint256 &txid, CDiskTxPos &pos) { |
| 169 | return Read(make_pair(DB_TXINDEX, txid), pos); |
| 170 | } |
| 171 | |
| 172 | bool CBlockTreeDB::WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> >&vect) { |
| 173 | CLevelDBBatch batch; |