diff options
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index 09ccb7e..3968268 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -27,7 +27,6 @@ type Config struct { StateDir string LogToSyslog bool `json:"LogToSyslog,omitempty"` ScoreFile string - WinnerFile string Address string Nodes map[string]Node LoopIntervalS int64 `json:"LoopIntervalS,omitempty"` @@ -122,9 +121,6 @@ func (conf Config) setDefaults() (Config, error) { if conf.ScoreFile == "" { conf.ScoreFile = "scores" } - if conf.WinnerFile == "" { - conf.WinnerFile = "is_winner" - } if conf.LoopIntervalS == 0 { conf.LoopIntervalS = 10 } |
