Fix typos in the proto files
All checks were successful
Protobuf / lint (pull_request) Successful in 14s
Integration Tests / test-integration (pull_request) Successful in 3m14s
Build / build (pull_request) Successful in 3m25s
E2E Tests / test-e2e (pull_request) Successful in 4m33s
Unit Tests / test-unit (pull_request) Successful in 2m11s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 8m45s
SDK Tests / sdk_tests (pull_request) Successful in 9m32s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 14m16s

This commit is contained in:
Prathamesh Musale 2024-07-24 12:56:28 +05:30
parent be3bcf9687
commit 245ce01b37
3 changed files with 6 additions and 6 deletions

View File

@ -13002,7 +13002,7 @@ func (x *QueryWhoisResponse) GetNameAuthority() *NameAuthority {
return nil
}
// QueryWhoisRequest is request type to get all authorities
// QueryAuthoritiesRequest is request type to get all authorities
type QueryAuthoritiesRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@ -13038,7 +13038,7 @@ func (x *QueryAuthoritiesRequest) GetOwner() string {
return ""
}
// QQueryAuthoritiesResponse is response type for authorities request
// QueryAuthoritiesResponse is response type for authorities request
type QueryAuthoritiesResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache

View File

@ -157,10 +157,10 @@ message QueryWhoisResponse {
];
}
// QueryWhoisRequest is request type to get all authorities
// QueryAuthoritiesRequest is request type to get all authorities
message QueryAuthoritiesRequest { string owner = 1; }
// QQueryAuthoritiesResponse is response type for authorities request
// QueryAuthoritiesResponse is response type for authorities request
message QueryAuthoritiesResponse {
repeated AuthorityEntry authorities = 1 [ (gogoproto.nullable) = false ];
// pagination defines the pagination in the response.

View File

@ -915,7 +915,7 @@ func (m *QueryWhoisResponse) GetNameAuthority() NameAuthority {
return NameAuthority{}
}
// QueryWhoisRequest is request type to get all authorities
// QueryAuthoritiesRequest is request type to get all authorities
type QueryAuthoritiesRequest struct {
Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
}
@ -960,7 +960,7 @@ func (m *QueryAuthoritiesRequest) GetOwner() string {
return ""
}
// QQueryAuthoritiesResponse is response type for authorities request
// QueryAuthoritiesResponse is response type for authorities request
type QueryAuthoritiesResponse struct {
Authorities []AuthorityEntry `protobuf:"bytes,1,rep,name=authorities,proto3" json:"authorities"`
// pagination defines the pagination in the response.