Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typos #1165

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/proto/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1608,7 +1608,7 @@ MsgUpdateParams is the request for updating module's params.
<a name="publicawesome.stargaze.globalfee.v1.MsgUpdateParamsResponse"></a>

### MsgUpdateParamsResponse
MsgUpdateParamsResponse is the response for executiong a module's params update.
MsgUpdateParamsResponse is the response for executing a module's params update.



Expand Down
2 changes: 1 addition & 1 deletion e2e/chain_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (
blocksAfterUpgrade = int64(10) // The number of blocks to wait for after the upgrade has been applied.
votingPeriod = "30s" // Reducing voting period for testing
maxDepositPeriod = "10s" // Reducing max deposit period for testing
depositDenom = "ustars" // The bond denom to be used to deposit for propsals
depositDenom = "ustars" // The bond denom to be used to deposit for proposals
)

func TestChainUpgrade(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions proto/publicawesome/stargaze/globalfee/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ option go_package = "github.com/public-awesome/stargaze/v15/x/globalfee/types";

// Query defines the gRPC querier service.
service Query {
// CodeAuthorization returns authrozation by specific code id.
// CodeAuthorization returns authorization by specific code id.
rpc CodeAuthorization(QueryCodeAuthorizationRequest) returns (QueryCodeAuthorizationResponse) {
option (google.api.http).get = "/stargaze/globalfee/v1/code_authorization/{code_id}";
}
// ContractAuthorization returns authrozation for specific contract address.
// ContractAuthorization returns authorization for specific contract address.
rpc ContractAuthorization(QueryContractAuthorizationRequest) returns (QueryContractAuthorizationResponse) {
option (google.api.http).get = "/stargaze/globalfee/v1/contract_authorization/{contract_address}";
}
Expand Down
4 changes: 2 additions & 2 deletions proto/publicawesome/stargaze/globalfee/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ message MsgRemoveContractAuthorization {
string contract_address = 2;
}

// MsgRemoveContractAuthorizationResponse is the repsonse for executing a contract authorization removal.
// MsgRemoveContractAuthorizationResponse is the response for executing a contract authorization removal.
message MsgRemoveContractAuthorizationResponse {}

// MsgUpdateParams is the request for updating module's params.
Expand All @@ -77,5 +77,5 @@ message MsgUpdateParams {
];
}

// MsgUpdateParamsResponse is the response for executiong a module's params update.
// MsgUpdateParamsResponse is the response for executing a module's params update.
message MsgUpdateParamsResponse {}