mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
Really do not consider blocked networks local
This commit is contained in:
parent
524843af01
commit
09b4e26a44
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ bool AddLocal(const CService& addr, int nScore)
|
|||
if (!GetBoolArg("-discover", true) && nScore < LOCAL_MANUAL)
|
||||
return false;
|
||||
|
||||
if (!IsLimited(addr))
|
||||
if (IsLimited(addr))
|
||||
return false;
|
||||
|
||||
printf("AddLocal(%s,%i)\n", addr.ToString().c_str(), nScore);
|
||||
|
|
Loading…
Add table
Reference in a new issue