Skip to content

Commit 3795e81

Browse files
committed
leveldbwrapper file rename to dbwrapper.*
1 parent 8587b23 commit 3795e81

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/Makefile.am

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ BITCOIN_CORE_H = \
110110
init.h \
111111
key.h \
112112
keystore.h \
113-
leveldbwrapper.h \
113+
dbwrapper.h \
114114
limitedmap.h \
115115
main.h \
116116
memusage.h \
@@ -188,7 +188,7 @@ libbitcoin_server_a_SOURCES = \
188188
httprpc.cpp \
189189
httpserver.cpp \
190190
init.cpp \
191-
leveldbwrapper.cpp \
191+
dbwrapper.cpp \
192192
main.cpp \
193193
merkleblock.cpp \
194194
miner.cpp \

src/Makefile.test.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ BITCOIN_TESTS =\
5454
test/hash_tests.cpp \
5555
test/key_tests.cpp \
5656
test/limitedmap_tests.cpp \
57-
test/leveldbwrapper_tests.cpp \
57+
test/dbwrapper_tests.cpp \
5858
test/main_tests.cpp \
5959
test/mempool_tests.cpp \
6060
test/miner_tests.cpp \

src/leveldbwrapper.cpp renamed to src/dbwrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
#include "leveldbwrapper.h"
5+
#include "dbwrapper.h"
66

77
#include "util.h"
88
#include "random.h"

src/leveldbwrapper.h renamed to src/dbwrapper.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
#ifndef BITCOIN_LEVELDBWRAPPER_H
6-
#define BITCOIN_LEVELDBWRAPPER_H
5+
#ifndef BITCOIN_DBWRAPPER_H
6+
#define BITCOIN_DBWRAPPER_H
77

88
#include "clientversion.h"
99
#include "serialize.h"
@@ -276,5 +276,5 @@ class CDBWrapper
276276

277277
};
278278

279-
#endif // BITCOIN_LEVELDBWRAPPER_H
279+
#endif // BITCOIN_DBWRAPPER_H
280280

src/test/leveldbwrapper_tests.cpp renamed to src/test/dbwrapper_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5-
#include "leveldbwrapper.h"
5+
#include "dbwrapper.h"
66
#include "uint256.h"
77
#include "random.h"
88
#include "test/test_bitcoin.h"

src/txdb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define BITCOIN_TXDB_H
88

99
#include "coins.h"
10-
#include "leveldbwrapper.h"
10+
#include "dbwrapper.h"
1111

1212
#include <map>
1313
#include <string>

0 commit comments

Comments
 (0)