diff --git a/src/Application.h b/src/Application.h index 1771aa63e4..7d9ada8ea5 100644 --- a/src/Application.h +++ b/src/Application.h @@ -13,6 +13,7 @@ #include "Peer.h" #include "NetworkOPs.h" #include "TaggedCache.h" +#include "ValidationCollection.h" #include "../database/database.h" @@ -44,6 +45,7 @@ class Application TransactionMaster mMasterTransaction; NetworkOPs mNetOps; NodeCache mNodeCache; + ValidationCollection mValidations; DatabaseCon *mTxnDB, *mLedgerDB, *mWalletDB, *mHashNodeDB, *mNetNodeDB; @@ -74,6 +76,7 @@ public: LedgerAcquireMaster& getMasterLedgerAcquire() { return mMasterLedgerAcquire; } TransactionMaster& getMasterTransaction() { return mMasterTransaction; } NodeCache& getNodeCache() { return mNodeCache; } + ValidationCollection& getValidations() { return mValidations; } DatabaseCon* getTxnDB() { return mTxnDB; } DatabaseCon* getLedgerDB() { return mLedgerDB; }