diff options
author | Gregory Maxwell <greg@xiph.org> | 2016-11-27 04:19:37 +0000 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2016-11-27 04:19:37 +0000 |
commit | bdb922b34c9a477c4ebf358653f6bcfb9bee48ce (patch) | |
tree | c48185a1c51b4c2760648f8bcd94eb9e68a6375c /src/net.cpp | |
parent | 083f20369878196785151e038e5f5126fed74021 (diff) |
Remove pnodeLocalHost.
Mostly a legacy of the long removed pub/sub system.
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/net.cpp b/src/net.cpp index 08115a3518..c9317c3025 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -74,7 +74,6 @@ bool fRelayTxes = true; CCriticalSection cs_mapLocalHost; std::map<CNetAddr, LocalServiceInfo> mapLocalHost; static bool vfLimited[NET_MAX] = {}; -static CNode* pnodeLocalHost = NULL; std::string strSubVersion; limitedmap<uint256, int64_t> mapAlreadyAskedFor(MAX_INV_SZ); @@ -2137,17 +2136,6 @@ bool CConnman::Start(boost::thread_group& threadGroup, CScheduler& scheduler, st semOutbound = new CSemaphore(std::min((nMaxOutbound + nMaxFeeler), nMaxConnections)); } - if (pnodeLocalHost == NULL) { - CNetAddr local; - LookupHost("127.0.0.1", local, false); - - NodeId id = GetNewNodeId(); - uint64_t nonce = GetDeterministicRandomizer(RANDOMIZER_ID_LOCALHOSTNONCE).Write(id).Finalize(); - - pnodeLocalHost = new CNode(id, nLocalServices, GetBestHeight(), INVALID_SOCKET, CAddress(CService(local, 0), nLocalServices), 0, nonce); - GetNodeSignals().InitializeNode(pnodeLocalHost, *this); - } - // // Start threads // @@ -2225,9 +2213,6 @@ void CConnman::Stop() vhListenSocket.clear(); delete semOutbound; semOutbound = NULL; - if(pnodeLocalHost) - DeleteNode(pnodeLocalHost); - pnodeLocalHost = NULL; } void CConnman::DeleteNode(CNode* pnode) |