diff --git a/pkg/interfaces/auto.go b/pkg/interfaces/auto.go index 07b74e4..53166dc 100644 --- a/pkg/interfaces/auto.go +++ b/pkg/interfaces/auto.go @@ -97,6 +97,10 @@ func (ai *AutoInterface) Start() error { return fmt.Errorf("no suitable interfaces found") } + // Mark interface as online + ai.Online = true + ai.Enabled = true + go ai.peerJobs() return nil }