Rename leveldb.{h,cpp} to leveldbwrapper.{h,cpp}.
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
#define BITCOIN_TXDB_LEVELDB_H
|
||||
|
||||
#include "main.h"
|
||||
#include "leveldb.h"
|
||||
#include "leveldbwrapper.h"
|
||||
|
||||
/** CCoinsView backed by the LevelDB coin database (chainstate/) */
|
||||
class CCoinsViewDB : public CCoinsView
|
||||
{
|
||||
protected:
|
||||
CLevelDB db;
|
||||
CLevelDBWrapper db;
|
||||
public:
|
||||
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
||||
|
||||
@@ -26,7 +26,7 @@ public:
|
||||
};
|
||||
|
||||
/** Access to the block database (blocks/index/) */
|
||||
class CBlockTreeDB : public CLevelDB
|
||||
class CBlockTreeDB : public CLevelDBWrapper
|
||||
{
|
||||
public:
|
||||
CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
|
||||
|
||||
Reference in New Issue
Block a user