From 7c33fec784def9a3be8d25c5950bb26443e545a7 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Fri, 12 Sep 2025 18:17:36 +0800 Subject: [PATCH] refactor: remove unused fields from WorkerService struct --- core/node/service/worker_service.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/node/service/worker_service.go b/core/node/service/worker_service.go index 7f1ef92e..658e7a51 100644 --- a/core/node/service/worker_service.go +++ b/core/node/service/worker_service.go @@ -26,7 +26,6 @@ type WorkerService struct { healthSvc *HealthService // settings - address interfaces.Address heartbeatInterval time.Duration // context and synchronization @@ -38,7 +37,6 @@ type WorkerService struct { // internals stopped bool n *models.Node - s grpc.NodeService_SubscribeClient isReady bool interfaces.Logger }