aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorJeff Garzik <jeff@bloq.com>2015-10-22 21:02:20 -0400
committerJeff Garzik <jgarzik@pobox.com>2015-10-22 21:02:20 -0400
commit8587b23038b88340ec64253ea4282afe90187a69 (patch)
tree50b7b71777325fae5397f2ba144968309c1a0c94 /src/txdb.h
parent6ec4b7eb20abf05dd6e3c0885644616a2c2acfd7 (diff)
downloadbitcoin-8587b23038b88340ec64253ea4282afe90187a69.tar.xz
leveldbwrapper symbol rename: Remove "Level" from class, etc. names
Diffstat (limited to 'src/txdb.h')
-rw-r--r--src/txdb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/txdb.h b/src/txdb.h
index bef5dc9fd1..1e8fccea45 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -26,11 +26,11 @@ static const int64_t nMaxDbCache = sizeof(void*) > 4 ? 16384 : 1024;
//! min. -dbcache in (MiB)
static const int64_t nMinDbCache = 4;
-/** CCoinsView backed by the LevelDB coin database (chainstate/) */
+/** CCoinsView backed by the coin database (chainstate/) */
class CCoinsViewDB : public CCoinsView
{
protected:
- CLevelDBWrapper db;
+ CDBWrapper db;
public:
CCoinsViewDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);
@@ -42,7 +42,7 @@ public:
};
/** Access to the block database (blocks/index/) */
-class CBlockTreeDB : public CLevelDBWrapper
+class CBlockTreeDB : public CDBWrapper
{
public:
CBlockTreeDB(size_t nCacheSize, bool fMemory = false, bool fWipe = false);