Remove dead TxQueue code

This commit is contained in:
David Schwartz
2014-11-10 14:04:20 -08:00
committed by Tom Ritchford
parent b7b744de94
commit d115a12cbe
12 changed files with 1 additions and 446 deletions

View File

@@ -183,7 +183,6 @@ public:
std::unique_ptr <ServerHandler> serverHandler_;
std::unique_ptr <NodeStore::Database> m_nodeStore;
std::unique_ptr <SNTPClient> m_sntpClient;
std::unique_ptr <TxQueue> m_txQueue;
std::unique_ptr <Validators::Manager> m_validators;
std::unique_ptr <AmendmentTable> m_amendmentTable;
std::unique_ptr <LoadFeeTrack> mFeeTrack;
@@ -317,8 +316,6 @@ public:
, m_sntpClient (SNTPClient::New (*this))
, m_txQueue (TxQueue::New ())
, m_validators (add (Validators::Manager::New (
*this,
getConfig ().getModuleDatabasePath (),
@@ -464,11 +461,6 @@ public:
return *m_resourceManager;
}
TxQueue& getTxQueue ()
{
return *m_txQueue;
}
OrderBookDB& getOrderBookDB ()
{
return m_orderBookDB;