diff --git a/src/UniqueNodeList.h b/src/UniqueNodeList.h index ecc641f4bb..e622c10165 100644 --- a/src/UniqueNodeList.h +++ b/src/UniqueNodeList.h @@ -1,6 +1,8 @@ #ifndef __UNIQUE_NODE_LIST__ #define __UNIQUE_NODE_LIST__ +#include + #include "../json/value.h" #include "NewcoinAddress.h" @@ -8,7 +10,6 @@ #include "HttpsClient.h" #include -#include // Guarantees minimum thoughput of 1 node per second. #define NODE_FETCH_JOBS 10 @@ -27,7 +28,7 @@ private: boost::mutex mFetchLock; int mFetchActive; // count of active fetches - boost::container::deque mFetchPending; + std::deque mFetchPending; void fetchNext(); void fetchProcess(std::string strDomain);