From 115b64d8d2e17e2c852dfc0f94066b7b26c750be Mon Sep 17 00:00:00 2001 From: anonpenguin Date: Mon, 4 Aug 2025 17:15:01 +0300 Subject: [PATCH] Add additional bootstrap addresses for improved connectivity --- pkg/constants/bootstrap.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/constants/bootstrap.go b/pkg/constants/bootstrap.go index 0377148..58a8799 100644 --- a/pkg/constants/bootstrap.go +++ b/pkg/constants/bootstrap.go @@ -92,6 +92,8 @@ func setDefaultBootstrapConfig() { } BootstrapAddresses = []string{ "/ip4/127.0.0.1/tcp/4001/p2p/12D3KooWN3AQHuxAzXfu98tiFYw7W3N2SyDwdxDRANXJp3ktVf8j", + "/ip4/57.129.81.31/tcp/4001/p2p/12D3KooWRWNtJQdi8sC7xagSHPSqVZEpJfYwipvWYwB1rNnztJHZ", + "/ip4/38.242.250.186/tcp/4001/p2p/12D3KooWGbdnA22bN24X2gyY1o9jozwTBq9wbfvwtJ7G4XQ9JgFm", } BootstrapPort = 4001 }