| 81 | /* Benchmarks */ |
| 82 | |
| 83 | static void AddrManAdd(benchmark::Bench& bench) |
| 84 | { |
| 85 | CreateAddresses(); |
| 86 | |
| 87 | bench.run([&] { |
| 88 | AddrMan addrman{EMPTY_NETGROUPMAN, /*deterministic=*/false, ADDRMAN_CONSISTENCY_CHECK_RATIO}; |
| 89 | AddAddressesToAddrMan(addrman); |
| 90 | }); |
| 91 | } |
| 92 | |
| 93 | static void AddrManSelect(benchmark::Bench& bench) |
| 94 | { |
nothing calls this directly
no test coverage detected