|
| CBlockTreeDB (size_t nCacheSize, bool fMemory=false, bool fWipe=false) |
|
bool | WriteBlockIndex (const CDiskBlockIndex &blockindex) |
|
bool | ReadBestInvalidWork (CBigNum &bnBestInvalidWork) |
|
bool | WriteBestInvalidWork (const CBigNum &bnBestInvalidWork) |
|
bool | ReadBlockFileInfo (int nFile, CBlockFileInfo &fileinfo) |
|
bool | WriteBlockFileInfo (int nFile, const CBlockFileInfo &fileinfo) |
|
bool | ReadLastBlockFile (int &nFile) |
|
bool | WriteLastBlockFile (int nFile) |
|
bool | WriteReindexing (bool fReindex) |
|
bool | ReadReindexing (bool &fReindex) |
|
bool | ReadTxIndex (const uint256 &txid, CDiskTxPos &pos) |
|
bool | WriteTxIndex (const std::vector< std::pair< uint256, CDiskTxPos > > &list) |
|
bool | WriteFlag (const std::string &name, bool fValue) |
|
bool | ReadFlag (const std::string &name, bool &fValue) |
|
bool | LoadBlockIndexGuts () |
|
bool | ReadSyncCheckpoint (uint256 &hashCheckpoint) |
|
bool | WriteSyncCheckpoint (uint256 hashCheckpoint) |
|
bool | ReadCheckpointPubKey (std::string &strPubKey) |
|
bool | WriteCheckpointPubKey (const std::string &strPubKey) |
|
| CLevelDB (const boost::filesystem::path &path, size_t nCacheSize, bool fMemory=false, bool fWipe=false) |
|
| ~CLevelDB () |
|
template<typename K , typename V > |
bool | Read (const K &key, V &value) throw (leveldb_error) |
|
template<typename K , typename V > |
bool | Write (const K &key, const V &value, bool fSync=false) throw (leveldb_error) |
|
template<typename K > |
bool | Exists (const K &key) throw (leveldb_error) |
|
template<typename K > |
bool | Erase (const K &key, bool fSync=false) throw (leveldb_error) |
|
bool | WriteBatch (CLevelDBBatch &batch, bool fSync=false) throw (leveldb_error) |
|
bool | Flush () |
|
bool | Sync () throw (leveldb_error) |
|
leveldb::Iterator * | NewIterator () |
|
Access to the block database (blocks/index/)
Definition at line 32 of file txdb.h.