Skip to content

Commit 6d93f12

Browse files
authored
chore: fix some function names and comments (#2619)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. NOTE: PR titles should follow semantic commits: https://www.conventionalcommits.org/en/v1.0.0/ --> ## Overview fix some function names and comments <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. Ex: Closes #<issue number> --> Signed-off-by: slicesequal <[email protected]>
1 parent 8fdc48b commit 6d93f12

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

client/crates/types/src/proto/evnode.v1.messages.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ pub struct GetNamespaceResponse {
427427
#[prost(string, tag = "2")]
428428
pub data_namespace: ::prost::alloc::string::String,
429429
}
430-
/// GetSequencerInfoResponse returns information about the sequencer
430+
/// GetSignerInfoResponse returns information about the signer
431431
#[allow(clippy::derive_partial_eq_without_eq)]
432432
#[derive(Clone, PartialEq, ::prost::Message)]
433433
pub struct GetSignerInfoResponse {

client/crates/types/src/proto/evnode.v1.services.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2439,7 +2439,7 @@ pub struct GetNamespaceResponse {
24392439
#[prost(string, tag = "2")]
24402440
pub data_namespace: ::prost::alloc::string::String,
24412441
}
2442-
/// GetSequencerInfoResponse returns information about the sequencer
2442+
/// GetSignerInfoResponse returns information about the signer
24432443
#[allow(clippy::derive_partial_eq_without_eq)]
24442444
#[derive(Clone, PartialEq, ::prost::Message)]
24452445
pub struct GetSignerInfoResponse {

proto/evnode/v1/config.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ service ConfigService {
1313
// GetNamespace returns the namespace for this network
1414
rpc GetNamespace(google.protobuf.Empty) returns (GetNamespaceResponse) {}
1515

16-
// GetSequencerInfo returns information about the sequencer
16+
// GetSignerInfo returns information about the signer
1717
rpc GetSignerInfo(google.protobuf.Empty) returns (GetSignerInfoResponse) {}
1818
}
1919

@@ -23,7 +23,7 @@ message GetNamespaceResponse {
2323
string data_namespace = 2;
2424
}
2525

26-
// GetSequencerInfoResponse returns information about the sequencer
26+
// GetSignerInfoResponse returns information about the signer
2727
message GetSignerInfoResponse {
2828
bytes address = 1;
2929
}

types/pb/evnode/v1/config.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)