feat: add new bootstrap server to relay list

Add wss://220-71-14-177.sslip.io/relay to the bootstrapServers array to expand relay connectivity options.

lemon-mint committed Nov 3, 2025 at 15:16 UTC eab9e03916fed36df900d88147daf4da3c72814a
1 file changed +1 -1
cmd/webclient/main_js.go
+1 -1
@@ -28,7 +28,7 @@ import (
28 )
29
30 var (
31 - bootstrapServers = []string{"ws://localhost:4017/relay", "wss://portal.gosuda.org/relay"}
31 + bootstrapServers = []string{"ws://localhost:4017/relay", "wss://portal.gosuda.org/relay", "wss://220-71-14-177.sslip.io/relay"}
32 rdClient *sdk.RDClient
33 )
34