From d810f5f9a567d8e82b10ada7ddbf7cf4c1145111 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 7 Mar 2012 09:14:00 -0800 Subject: [PATCH] Missing from previous commits. --- Application.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Application.h b/Application.h index 39cbb762b..ee6431e37 100644 --- a/Application.h +++ b/Application.h @@ -8,6 +8,7 @@ #include "PubKeyCache.h" #include "ScopedLock.h" #include "LedgerMaster.h" +#include "LedgerAcquire.h" #include "TransactionMaster.h" #include "Wallet.h" #include "Peer.h" @@ -42,6 +43,7 @@ class Application KnownNodeList mKnownNodes; PubKeyCache mPKCache; LedgerMaster mMasterLedger; + LedgerAcquireMaster mMasterLedgerAcquire; TransactionMaster mMasterTransaction; DatabaseCon *mTxnDB, *mLedgerDB, *mWalletDB, *mHashNodeDB, *mNetNodeDB; @@ -72,6 +74,7 @@ public: boost::asio::io_service& getIOService() { return mIOService; } LedgerMaster& getMasterLedger() { return mMasterLedger; } + LedgerAcquireMaster& getMasterLedgerAcquire() { return mMasterLedgerAcquire; } TransactionMaster& getMasterTransaction() { return mMasterTransaction; } DatabaseCon* getTxnDB() { return mTxnDB; }