From e256b2fa0d9fdf819a7f19e407d0e9b80a19bb6d Mon Sep 17 00:00:00 2001 From: David Orchard Date: Tue, 10 Sep 2024 20:54:48 -0700 Subject: [PATCH] lint --- core/capabilities/gateway_connector/service_wrapper.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/capabilities/gateway_connector/service_wrapper.go b/core/capabilities/gateway_connector/service_wrapper.go index d0280a72ba0..824c92b4f89 100644 --- a/core/capabilities/gateway_connector/service_wrapper.go +++ b/core/capabilities/gateway_connector/service_wrapper.go @@ -91,8 +91,8 @@ func (e *ServiceWrapper) Start(ctx context.Context) error { }) } -func (h *ServiceWrapper) Sign(data ...[]byte) ([]byte, error) { - return gwcommon.SignData(h.signerKey, data...) +func (e *ServiceWrapper) Sign(data ...[]byte) ([]byte, error) { + return gwcommon.SignData(e.signerKey, data...) } func (e *ServiceWrapper) Close() error {