Create lines databases.

This commit is contained in:
JoelKatz
2013-03-19 03:26:44 -07:00
parent 87840de307
commit 03a72b3e08
3 changed files with 46 additions and 7 deletions

View File

@@ -70,7 +70,7 @@ class Application
TXQueue mTxnQueue;
OrderBookDB mOrderBookDB;
DatabaseCon *mRpcDB, *mTxnDB, *mLedgerDB, *mWalletDB, *mHashNodeDB, *mNetNodeDB;
DatabaseCon *mRpcDB, *mTxnDB, *mLedgerDB, *mWalletDB, *mHashNodeDB, *mNetNodeDB, *mPathFindDB;
ConnectionPool mConnectionPool;
PeerDoor* mPeerDoor;
@@ -136,6 +136,7 @@ public:
DatabaseCon* getWalletDB() { return mWalletDB; }
DatabaseCon* getHashNodeDB() { return mHashNodeDB; }
DatabaseCon* getNetNodeDB() { return mNetNodeDB; }
DatabaseCon* getPathFindDB() { return mPathFindDB; }
uint256 getNonce256() { return mNonce256; }
std::size_t getNonceST() { return mNonceST; }