aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2016-04-16 17:51:01 -0400
committerCory Fields <cory-nospam-@coryfields.com>2016-09-08 12:12:57 -0400
commit502dd3a8a0bc0d12744e75f84a22cc12074c5683 (patch)
treecc228980d8a946d02cf3f8203e15e293c43ed7c4 /src/init.cpp
parenta0f3d3cdad630103d919a4ec802c413b87fa1f1a (diff)
downloadbitcoin-502dd3a8a0bc0d12744e75f84a22cc12074c5683.tar.xz
net: Add oneshot functions to CConnman
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index b0ffb7a40e..719b648c04 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);