diff options
author | Brandon Dahler <brandon.dahler@gmail.com> | 2013-11-05 19:58:43 -0600 |
---|---|---|
committer | Brandon Dahler <brandon.dahler@gmail.com> | 2013-11-08 18:03:46 -0600 |
commit | b64187d05f327992c304836fe1fc1d276ec80c36 (patch) | |
tree | 11db3ecf4745e4dd1ddb7b26b88e586ce9fa03bd /src/txdb.h | |
parent | 995cb284cfb234d3d05e29ad5163cacde9a8384b (diff) |
Rename leveldb.{h,cpp} to leveldbwrapper.{h,cpp}.
Diffstat (limited to 'src/txdb.h')
-rw-r--r-- | src/txdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/txdb.h b/src/txdb.h index b555be3de7..4bc2902a0b 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -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); |