From 09b4e26a446c302f0cce176bf572da956bb2515e Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 13 May 2012 23:50:49 +0200 Subject: [PATCH] Really do not consider blocked networks local --- src/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index 698aa91de15..88578cdcb3c 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -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);