File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ BITCOIN_CORE_H = \
110
110
init.h \
111
111
key.h \
112
112
keystore.h \
113
- leveldbwrapper .h \
113
+ dbwrapper .h \
114
114
limitedmap.h \
115
115
main.h \
116
116
memusage.h \
@@ -188,7 +188,7 @@ libbitcoin_server_a_SOURCES = \
188
188
httprpc.cpp \
189
189
httpserver.cpp \
190
190
init.cpp \
191
- leveldbwrapper .cpp \
191
+ dbwrapper .cpp \
192
192
main.cpp \
193
193
merkleblock.cpp \
194
194
miner.cpp \
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ BITCOIN_TESTS =\
54
54
test/hash_tests.cpp \
55
55
test/key_tests.cpp \
56
56
test/limitedmap_tests.cpp \
57
- test/leveldbwrapper_tests .cpp \
57
+ test/dbwrapper_tests .cpp \
58
58
test/main_tests.cpp \
59
59
test/mempool_tests.cpp \
60
60
test/miner_tests.cpp \
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include " leveldbwrapper .h"
5
+ #include " dbwrapper .h"
6
6
7
7
#include " util.h"
8
8
#include " random.h"
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #ifndef BITCOIN_LEVELDBWRAPPER_H
6
- #define BITCOIN_LEVELDBWRAPPER_H
5
+ #ifndef BITCOIN_DBWRAPPER_H
6
+ #define BITCOIN_DBWRAPPER_H
7
7
8
8
#include " clientversion.h"
9
9
#include " serialize.h"
@@ -276,5 +276,5 @@ class CDBWrapper
276
276
277
277
};
278
278
279
- #endif // BITCOIN_LEVELDBWRAPPER_H
279
+ #endif // BITCOIN_DBWRAPPER_H
280
280
Original file line number Diff line number Diff line change 2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
- #include " leveldbwrapper .h"
5
+ #include " dbwrapper .h"
6
6
#include " uint256.h"
7
7
#include " random.h"
8
8
#include " test/test_bitcoin.h"
Original file line number Diff line number Diff line change 7
7
#define BITCOIN_TXDB_H
8
8
9
9
#include " coins.h"
10
- #include " leveldbwrapper .h"
10
+ #include " dbwrapper .h"
11
11
12
12
#include < map>
13
13
#include < string>
You can’t perform that action at this time.
0 commit comments