-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server/v2/comebft): wire missing services + fix simulation (#21964)
(cherry picked from commit d697a3d) # Conflicts: # server/v2/api/grpc/server.go # server/v2/cometbft/go.mod # server/v2/go.mod # server/v2/stf/branch/mergeiter.go
- Loading branch information
1 parent
0083431
commit 919b35c
Showing
25 changed files
with
2,732 additions
and
187 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
syntax = "proto3"; | ||
package cosmos.base.node.v2; | ||
|
||
import "google/api/annotations.proto"; | ||
|
||
option go_package = "cosmossdk.io/server/v2/api/grpc/nodeservice"; | ||
|
||
// Service defines the gRPC querier service for node related queries. | ||
service Service { | ||
// Config queries for the operator configuration. | ||
rpc Config(ConfigRequest) returns (ConfigResponse) { | ||
option (google.api.http).get = "/cosmos/base/node/v2/config"; | ||
} | ||
} | ||
|
||
// ConfigRequest defines the request structure for the Config gRPC query. | ||
message ConfigRequest {} | ||
|
||
// ConfigResponse defines the response structure for the Config gRPC query. | ||
message ConfigResponse { | ||
string minimum_gas_price = 1; | ||
} |
Oops, something went wrong.