From afe55f0932adf587f62d988fba881cb4ca77319b Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Thu, 10 Jun 2021 14:17:31 -0400 Subject: [PATCH] fix for testing: dont remove from failing set --- llarp/consensus/reachability_testing.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llarp/consensus/reachability_testing.cpp b/llarp/consensus/reachability_testing.cpp index 52c53d7b0..99190bc4f 100644 --- a/llarp/consensus/reachability_testing.cpp +++ b/llarp/consensus/reachability_testing.cpp @@ -125,7 +125,6 @@ namespace llarp::consensus if (retest_time > now) break; result.emplace_back(pk, failures); - failing.erase(pk); failing_queue.pop(); } return result;