-
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 (backp…
…ort #21964) (#22555) Co-authored-by: Julien Robert <[email protected]>
- Loading branch information
1 parent
0083431
commit 3fcdcae
Showing
21 changed files
with
413 additions
and
240 deletions.
There are no files selected for viewing
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; | ||
} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Oops, something went wrong.