Skip to content

Commit

Permalink
simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Feb 15, 2024
1 parent 30e20e3 commit 7f539e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions simapp/embed.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,5 @@ var SimAppFS embed.FS
//go:embed interchaintest/*
var ICTestFS embed.FS

// We only need to copy over the proto/ here, since the x/ will be generated automatically
//
//go:embed proto/*
var ProtoModuleFS embed.FS
4 changes: 2 additions & 2 deletions simapp/proto/example/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import "amino/amino.proto";

option go_package = "github.com/strangelove-ventures/simapp/x/example/types";

// GenesisState defines the packetforward genesis state
// GenesisState defines the module genesis state
message GenesisState {
// Params defines all the paramaters of the module.
Params params = 1 [(gogoproto.nullable) = false];
}

// Params defines the set of packetforward parameters.
// Params defines the set of module parameters.
message Params {
option (amino.name) = "example/params";
option (gogoproto.equal) = true;
Expand Down
2 changes: 1 addition & 1 deletion simapp/proto/example/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option go_package = "github.com/strangelove-ventures/simapp/x/example/types";

// Query provides defines the gRPC querier service.
service Query {
// Params queries all parameters of the packetforward module.
// Params queries all parameters of the module.
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
option (google.api.http).get = "/example/v1/params";
}
Expand Down

0 comments on commit 7f539e5

Please sign in to comment.