diff options
| author | Cory Fields <[email protected]> | 2016-04-16 17:51:01 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-09-08 12:12:57 -0400 |
| commit | 502dd3a8a0bc0d12744e75f84a22cc12074c5683 (patch) | |
| tree | cc228980d8a946d02cf3f8203e15e293c43ed7c4 /src/init.cpp | |
| parent | net: move ban and addrman functions into CConnman (diff) | |
| download | discoin-502dd3a8a0bc0d12744e75f84a22cc12074c5683.tar.xz discoin-502dd3a8a0bc0d12744e75f84a22cc12074c5683.zip | |
net: Add oneshot functions to CConnman
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index b0ffb7a40..719b648c0 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1230,7 +1230,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) } BOOST_FOREACH(const std::string& strDest, mapMultiArgs["-seednode"]) - AddOneShot(strDest); + connman.AddOneShot(strDest); #if ENABLE_ZMQ pzmqNotificationInterface = CZMQNotificationInterface::CreateWithArguments(mapArgs); |