Skip to content

Commit

Permalink
dont share response type
Browse files Browse the repository at this point in the history
  • Loading branch information
countvonzero committed Jul 6, 2023
1 parent b83547d commit b554d3d
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 34 deletions.
36 changes: 19 additions & 17 deletions release/go/spacemesh/v1/activation.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 81 additions & 16 deletions release/go/spacemesh/v1/activation_types.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion spacemesh/v1/activation.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ service ActivationService {
rpc Get(GetRequest) returns (GetResponse);

// Highest returns the atx id with the highest tick count.
rpc Highest(google.protobuf.Empty) returns (GetResponse);
rpc Highest(google.protobuf.Empty) returns (HighestResponse);
}
4 changes: 4 additions & 0 deletions spacemesh/v1/activation_types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ message GetRequest {
message GetResponse {
Activation atx = 1;
}

message HighestResponse {
Activation atx = 1;
}

0 comments on commit b554d3d

Please sign in to comment.