Second pre-release update
[novacoin.git] / src / txdb.h
index a0f8315..a8e9f5b 100644 (file)
@@ -6,19 +6,6 @@
 #ifndef BITCOIN_TXDB_H
 #define BITCOIN_TXDB_H
 
-// Allow switching between LevelDB and BerkelyDB here in case we need to temporarily
-// go back to BDB for any reason. Once we're confident enough with LevelDB to stick
-// with it, this can be deleted.
-
-#ifdef USE_LEVELDB
 #include "txdb-leveldb.h"
-#else
-#include "db.h"
-#include "txdb-bdb.h"
-#endif
-
-// Sets up whatever database layer was chosen for in-memory only access. Used by the
-// the unit test framework.
-extern void MakeMockTXDB();
 
 #endif  // BITCOIN_TXDB_H