leveldbwrapper file rename to dbwrapper.*

This commit is contained in:
Jeff Garzik
2015-10-22 21:33:06 -04:00
committed by Jack Grigg
parent f345c41ec4
commit e3da7a572d
7 changed files with 10 additions and 10 deletions

View File

@@ -149,7 +149,7 @@ BITCOIN_CORE_H = \
init.h \ init.h \
key.h \ key.h \
keystore.h \ keystore.h \
leveldbwrapper.h \ dbwrapper.h \
limitedmap.h \ limitedmap.h \
main.h \ main.h \
memusage.h \ memusage.h \
@@ -241,7 +241,7 @@ libbitcoin_server_a_SOURCES = \
httprpc.cpp \ httprpc.cpp \
httpserver.cpp \ httpserver.cpp \
init.cpp \ init.cpp \
leveldbwrapper.cpp \ dbwrapper.cpp \
main.cpp \ main.cpp \
merkleblock.cpp \ merkleblock.cpp \
metrics.cpp \ metrics.cpp \

View File

@@ -60,7 +60,7 @@ BITCOIN_TESTS =\
test/getarg_tests.cpp \ test/getarg_tests.cpp \
test/hash_tests.cpp \ test/hash_tests.cpp \
test/key_tests.cpp \ test/key_tests.cpp \
test/leveldbwrapper_tests.cpp \ test/dbwrapper_tests.cpp \
test/main_tests.cpp \ test/main_tests.cpp \
test/mempool_tests.cpp \ test/mempool_tests.cpp \
test/miner_tests.cpp \ test/miner_tests.cpp \

View File

@@ -2,7 +2,7 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "leveldbwrapper.h" #include "dbwrapper.h"
#include "util.h" #include "util.h"

View File

@@ -2,8 +2,8 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_LEVELDBWRAPPER_H #ifndef BITCOIN_DBWRAPPER_H
#define BITCOIN_LEVELDBWRAPPER_H #define BITCOIN_DBWRAPPER_H
#include "clientversion.h" #include "clientversion.h"
#include "serialize.h" #include "serialize.h"
@@ -241,5 +241,5 @@ public:
}; };
#endif // BITCOIN_LEVELDBWRAPPER_H #endif // BITCOIN_DBWRAPPER_H

View File

@@ -5,7 +5,7 @@
#include "paymentdisclosuredb.h" #include "paymentdisclosuredb.h"
#include "util.h" #include "util.h"
#include "leveldbwrapper.h" #include "dbwrapper.h"
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

View File

@@ -2,7 +2,7 @@
// Distributed under the MIT software license, see the accompanying // Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php. // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "leveldbwrapper.h" #include "dbwrapper.h"
#include "uint256.h" #include "uint256.h"
#include "random.h" #include "random.h"
#include "test/test_bitcoin.h" #include "test/test_bitcoin.h"

View File

@@ -7,7 +7,7 @@
#define BITCOIN_TXDB_H #define BITCOIN_TXDB_H
#include "coins.h" #include "coins.h"
#include "leveldbwrapper.h" #include "dbwrapper.h"
#include <map> #include <map>
#include <string> #include <string>