vote for a local address */
| 345 | |
| 346 | /** vote for a local address */ |
| 347 | bool SeenLocal(const CService& addr) |
| 348 | { |
| 349 | LOCK(g_maplocalhost_mutex); |
| 350 | const auto it = mapLocalHost.find(addr); |
| 351 | if (it == mapLocalHost.end()) return false; |
| 352 | ++it->second.nScore; |
| 353 | return true; |
| 354 | } |
| 355 | |
| 356 | |
| 357 | /** check whether a given address is potentially local */ |
no test coverage detected