From bd046bbf4ae444be06589a467de7d3be021bd59e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Wed, 11 Apr 2012 02:58:32 +0000 Subject: [PATCH] merged change from RC_0_16 --- src/policy.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/policy.cpp b/src/policy.cpp index 054602355..ae8c9d9da 100644 --- a/src/policy.cpp +++ b/src/policy.cpp @@ -1768,10 +1768,6 @@ namespace libtorrent if (lhs.connectable != rhs.connectable) return lhs.connectable < rhs.connectable; - // prefer peers with higher failcount - if (lhs.failcount != rhs.failcount) - return lhs.failcount > rhs.failcount; - return lhs.trust_points < rhs.trust_points; }