From 5ed22efa8390b14c8448996a5ed5a84d0bd80e41 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 27 Feb 2024 03:02:11 -0500 Subject: [PATCH] fix: wrong peers key --- protocols/s5/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/s5/config.go b/protocols/s5/config.go index a81a411..6cb5f33 100644 --- a/protocols/s5/config.go +++ b/protocols/s5/config.go @@ -16,7 +16,7 @@ func (c Config) Defaults() map[string]interface{} { defaults := map[string]interface{}{} - defaults["p2p.network.peers"] = []string{ + defaults["p2p.peers.initial"] = []string{ "ss://z2DWuWNZcdSyZLpXFK2uCU3haaWMXrDAgxzv17sDEMHstZb@s5.garden/s5/p2p", "wss://z2DWuPbL5pweybXnEB618pMnV58ECj2VPDNfVGm3tFqBvjF@s5.ninja/s5/p2p", }