aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2017-01-20 15:36:13 -0500
committerMatt Corallo <git@bluematt.me>2017-03-06 18:33:50 -0500
commit73296f54d6f0b38fcac627882d2e9480a2bad14a (patch)
tree48be0c7e220bd652f941e7cd209c3c85bac304c9 /src/net.cpp
parent72fb5158b1c8bd85c2bccc87ba814170a0095d34 (diff)
downloadbitcoin-73296f54d6f0b38fcac627882d2e9480a2bad14a.tar.xz
CScheduler boost->std::function, use millisecs for times, not secs
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index e38d3b344e..6ff63d4730 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -2288,7 +2288,7 @@ bool CConnman::Start(CScheduler& scheduler, std::string& strNodeError, Options c
threadMessageHandler = std::thread(&TraceThread<std::function<void()> >, "msghand", std::function<void()>(std::bind(&CConnman::ThreadMessageHandler, this)));
// Dump network addresses
- scheduler.scheduleEvery(boost::bind(&CConnman::DumpData, this), DUMP_ADDRESSES_INTERVAL);
+ scheduler.scheduleEvery(std::bind(&CConnman::DumpData, this), DUMP_ADDRESSES_INTERVAL * 1000);
return true;
}