| 1845 | } |
| 1846 | |
| 1847 | void CConnman::DumpAddresses() |
| 1848 | { |
| 1849 | int64_t nStart = GetTimeMillis(); |
| 1850 | |
| 1851 | DumpPeerAddresses(::gArgs, addrman); |
| 1852 | |
| 1853 | LogPrint(BCLog::NET, "Flushed %d addresses to peers.dat %dms\n", |
| 1854 | addrman.size(), GetTimeMillis() - nStart); |
| 1855 | } |
| 1856 | |
| 1857 | void CConnman::ProcessAddrFetch() |
| 1858 | { |
nothing calls this directly
no test coverage detected