Browse Source

leveldbwrapper file rename to dbwrapper.*

0.13
Jeff Garzik 9 years ago committed by Jeff Garzik
parent
commit
3795e8152b
  1. 4
      src/Makefile.am
  2. 2
      src/Makefile.test.include
  3. 2
      src/dbwrapper.cpp
  4. 6
      src/dbwrapper.h
  5. 2
      src/test/dbwrapper_tests.cpp
  6. 2
      src/txdb.h

4
src/Makefile.am

@ -110,7 +110,7 @@ BITCOIN_CORE_H = \ @@ -110,7 +110,7 @@ BITCOIN_CORE_H = \
init.h \
key.h \
keystore.h \
leveldbwrapper.h \
dbwrapper.h \
limitedmap.h \
main.h \
memusage.h \
@ -188,7 +188,7 @@ libbitcoin_server_a_SOURCES = \ @@ -188,7 +188,7 @@ libbitcoin_server_a_SOURCES = \
httprpc.cpp \
httpserver.cpp \
init.cpp \
leveldbwrapper.cpp \
dbwrapper.cpp \
main.cpp \
merkleblock.cpp \
miner.cpp \

2
src/Makefile.test.include

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

2
src/leveldbwrapper.cpp → src/dbwrapper.cpp

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

6
src/leveldbwrapper.h → src/dbwrapper.h

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

2
src/test/leveldbwrapper_tests.cpp → src/test/dbwrapper_tests.cpp

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

2
src/txdb.h

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

Loading…
Cancel
Save