New class CTxMemPool, encapsulating TX memory pool data members
[novacoin.git] / src / main.h
index a89c093..ef4ee13 100644 (file)
@@ -1608,4 +1608,12 @@ public:
     bool ProcessAlert();
 };
 
+class CTxMemPool
+{
+public:
+    mutable CCriticalSection cs;
+    std::map<uint256, CTransaction> mapTx;
+    std::map<COutPoint, CInPoint> mapNextTx;
+};
+
 #endif