From 68e122cf72dba3b9dda32e6329f80c7b4af7155c Mon Sep 17 00:00:00 2001 From: Sergey Cherepanov Date: Fri, 17 Feb 2023 00:24:52 +0300 Subject: [PATCH] remove unused param --- net/config.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net/config.go b/net/config.go index dde5db96..b0cdf564 100644 --- a/net/config.go +++ b/net/config.go @@ -10,8 +10,7 @@ type Config struct { } type ServerConfig struct { - IdentityHandshake bool `yaml:"identityHandshake"` - ListenAddrs []string `yaml:"listenAddrs"` + ListenAddrs []string `yaml:"listenAddrs"` } type StreamConfig struct {