| 73 | /* Benchmarks */ |
| 74 | |
| 75 | static void AddrManAdd(benchmark::Bench& bench) |
| 76 | { |
| 77 | CreateAddresses(); |
| 78 | |
| 79 | bench.run([&] { |
| 80 | AddrMan addrman{EMPTY_ASMAP, /*deterministic=*/false, ADDRMAN_CONSISTENCY_CHECK_RATIO}; |
| 81 | AddAddressesToAddrMan(addrman); |
| 82 | }); |
| 83 | } |
| 84 | |
| 85 | static void AddrManSelect(benchmark::Bench& bench) |
| 86 | { |
nothing calls this directly
no test coverage detected