From 7f5693dfd33fc31839c28ca5d94f44429b7218bc Mon Sep 17 00:00:00 2001 From: Dan Laine Date: Tue, 23 Jun 2020 15:08:15 -0400 Subject: [PATCH] reduce MaxTimeFetchingAncestors from 100ms to 50ms --- snow/engine/common/bootstrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snow/engine/common/bootstrapper.go b/snow/engine/common/bootstrapper.go index 8c9c745..f1f58db 100644 --- a/snow/engine/common/bootstrapper.go +++ b/snow/engine/common/bootstrapper.go @@ -24,7 +24,7 @@ const ( var ( // MaxTimeFetchingAncestors is the maximum amount of time to spend fetching vertices during a call to GetAncestors - MaxTimeFetchingAncestors = 100 * time.Millisecond + MaxTimeFetchingAncestors = 50 * time.Millisecond ) // Bootstrapper implements the Engine interface.