diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2018-02-07 17:42:39 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2018-02-08 14:35:28 -0500 |
commit | ba917249486310985a34a5250bb570ca18821322 (patch) | |
tree | ee3abc56f29ce92b369bf33f5479f5879332a803 /src/net.h | |
parent | f26866b9caf9ff27d129c703f51b8c2922000243 (diff) |
boost: remove useless threadGroup parameter from Discover
Diffstat (limited to 'src/net.h')
-rw-r--r-- | src/net.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -37,10 +37,6 @@ class CScheduler; class CNode; -namespace boost { - class thread_group; -} // namespace boost - /** Time between pings automatically sent out for latency probing and keepalive (in seconds). */ static const int PING_INTERVAL = 2 * 60; /** Time after which to disconnect, after waiting for a ping response (or inactivity). */ @@ -441,7 +437,7 @@ private: friend struct CConnmanTest; }; extern std::unique_ptr<CConnman> g_connman; -void Discover(boost::thread_group& threadGroup); +void Discover(); void StartMapPort(); void InterruptMapPort(); void StopMapPort(); |