From 49b738fb3c9bfb1eef60631073c53ba4882fb8b7 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 {