MCPcopy Create free account
hub / github.com/bitshares/bitshares-core / dump_node_status_task

Method dump_node_status_task

libraries/net/node.cpp:1189–1197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1187 }
1188
1189 void node_impl::dump_node_status_task()
1190 {
1191 VERIFY_CORRECT_THREAD();
1192 dump_node_status();
1193 if (!_node_is_shutting_down && !_dump_node_status_task_done.canceled())
1194 _dump_node_status_task_done = fc::schedule([=](){ dump_node_status_task(); },
1195 fc::time_point::now() + fc::minutes(1),
1196 "dump_node_status_task");
1197 }
1198
1199 void node_impl::delayed_peer_deletion_task()
1200 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected