From 037ac596a9134fd8f210096f43944ebb52d9871d Mon Sep 17 00:00:00 2001 From: cargoedit Date: Tue, 7 Oct 2025 01:04:24 +0800 Subject: [PATCH] chore: fix some function names in comment Signed-off-by: cargoedit --- client/crates/types/src/proto/evnode.v1.services.rs | 4 ++-- types/pb/evnode/v1/v1connect/config.connect.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/crates/types/src/proto/evnode.v1.services.rs b/client/crates/types/src/proto/evnode.v1.services.rs index 619d3406f9..449dbf4bf4 100644 --- a/client/crates/types/src/proto/evnode.v1.services.rs +++ b/client/crates/types/src/proto/evnode.v1.services.rs @@ -2558,7 +2558,7 @@ pub mod config_service_client { .insert(GrpcMethod::new("evnode.v1.ConfigService", "GetNamespace")); self.inner.unary(req, path, codec).await } - /// GetSequencerInfo returns information about the sequencer + /// GetSignerInfo returns information about the signer pub async fn get_signer_info( &mut self, request: impl tonic::IntoRequest<()>, @@ -2601,7 +2601,7 @@ pub mod config_service_server { tonic::Response, tonic::Status, >; - /// GetSequencerInfo returns information about the sequencer + /// GetSignerInfo returns information about the signer async fn get_signer_info( &self, request: tonic::Request<()>, diff --git a/types/pb/evnode/v1/v1connect/config.connect.go b/types/pb/evnode/v1/v1connect/config.connect.go index 0677dd1ca5..e7fb47c1d4 100644 --- a/types/pb/evnode/v1/v1connect/config.connect.go +++ b/types/pb/evnode/v1/v1connect/config.connect.go @@ -46,7 +46,7 @@ const ( type ConfigServiceClient interface { // GetNamespace returns the namespace for this network GetNamespace(context.Context, *connect.Request[emptypb.Empty]) (*connect.Response[v1.GetNamespaceResponse], error) - // GetSequencerInfo returns information about the sequencer + // GetSignerInfo returns information about the signer GetSignerInfo(context.Context, *connect.Request[emptypb.Empty]) (*connect.Response[v1.GetSignerInfoResponse], error) } @@ -96,7 +96,7 @@ func (c *configServiceClient) GetSignerInfo(ctx context.Context, req *connect.Re type ConfigServiceHandler interface { // GetNamespace returns the namespace for this network GetNamespace(context.Context, *connect.Request[emptypb.Empty]) (*connect.Response[v1.GetNamespaceResponse], error) - // GetSequencerInfo returns information about the sequencer + // GetSignerInfo returns information about the signer GetSignerInfo(context.Context, *connect.Request[emptypb.Empty]) (*connect.Response[v1.GetSignerInfoResponse], error) }