| 1147 | } |
| 1148 | |
| 1149 | size_t AddrManImpl::Size(std::optional<Network> net, std::optional<bool> in_new) const |
| 1150 | { |
| 1151 | LOCK(cs); |
| 1152 | Check(); |
| 1153 | auto ret = Size_(net, in_new); |
| 1154 | Check(); |
| 1155 | return ret; |
| 1156 | } |
| 1157 | |
| 1158 | bool AddrManImpl::Add(const std::vector<CAddress>& vAddr, const CNetAddr& source, std::chrono::seconds time_penalty) |
| 1159 | { |
no test coverage detected