| 2422 | } |
| 2423 | |
| 2424 | void CConnman::DumpAddresses() |
| 2425 | { |
| 2426 | const auto start{SteadyClock::now()}; |
| 2427 | |
| 2428 | DumpPeerAddresses(::gArgs, addrman); |
| 2429 | |
| 2430 | LogDebug(BCLog::NET, "Flushed %d addresses to peers.dat %dms", |
| 2431 | addrman.get().Size(), Ticks<std::chrono::milliseconds>(SteadyClock::now() - start)); |
| 2432 | } |
| 2433 | |
| 2434 | void CConnman::ProcessAddrFetch() |
| 2435 | { |
nothing calls this directly
no test coverage detected