Update CMakeLists.txt - play with openssl
[novacoin.git] / src / txdb-leveldb.h
index c73dda6..8dbd952 100644 (file)
@@ -6,15 +6,21 @@
 #ifndef BITCOIN_LEVELDB_H
 #define BITCOIN_LEVELDB_H
 
-#include "main.h"
-
-#include <map>
-#include <string>
-#include <vector>
+#include "serialize.h"
+#include "streams.h"
+#include "version.h"
 
 #include <leveldb/db.h>
 #include <leveldb/write_batch.h>
 
+class CBigNum;
+class CDiskBlockIndex;
+class COutPoint;
+class CTxIndex;
+class CTransaction;
+class uint256;
+class CDiskTxPos;
+
 // Class that provides access to a LevelDB. Note that this class is frequently
 // instantiated on the stack and then destroyed again, so instantiation has to
 // be very cheap. Unfortunately that means, a CTxDB instance is actually just a
@@ -91,8 +97,7 @@ protected:
                                 SER_DISK, CLIENT_VERSION);
             ssValue >> value;
         }
-        catch (std::exception &e) {
-            (void)e;
+        catch (const std::exception&) {
             return false;
         }
         return true;
@@ -208,4 +213,4 @@ public:
 };
 
 
-#endif // BITCOIN_DB_H
+#endif // BITCOIN_LEVELDB_H