From cbe2df02ad2debbe32fc7de03f7800f4e383d64d Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Tue, 30 Dec 2025 21:12:51 -0600 Subject: [PATCH] refactor: remove commented-out code for interface configuration in CreateDefaultConfig function --- internal/config/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 9f74bf5..ef749a1 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -211,7 +211,6 @@ func CreateDefaultConfig(path string) error { cfg := DefaultConfig() cfg.ConfigPath = path - // Add Auto Interface cfg.Interfaces["Auto Discovery"] = &common.InterfaceConfig{ Type: "AutoInterface", Enabled: true, @@ -221,7 +220,6 @@ func CreateDefaultConfig(path string) error { DataPort: 42671, } - // Add default interfaces cfg.Interfaces["Go-RNS-Testnet"] = &common.InterfaceConfig{ Type: "TCPClientInterface", Enabled: true,