From 45426dbd133ae7eaa473d4bc3e5eff88ea6d113f Mon Sep 17 00:00:00 2001 From: Andrew Gillis Date: Wed, 25 Oct 2023 20:55:49 -0700 Subject: [PATCH] Update bootstrap/bootstrap.go Co-authored-by: Jorropo --- bootstrap/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.go b/bootstrap/bootstrap.go index 5cde50371..347d98797 100644 --- a/bootstrap/bootstrap.go +++ b/bootstrap/bootstrap.go @@ -67,7 +67,7 @@ type BootstrapConfig struct { var DefaultBootstrapConfig = BootstrapConfig{ MinPeerThreshold: 4, Period: 30 * time.Second, - ConnectionTimeout: (30 * time.Second) / 3, // Perod / 3 + ConnectionTimeout: (30 * time.Second) / 3, // Period / 3 BackupBootstrapInterval: 1 * time.Hour, MaxBackupBootstrapSize: 20, }