diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index da9147e5e8..f95ae98698 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -3010,7 +3010,7 @@ GenesisState defines the community module's genesis state. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `params` | [Params](#kava.community.v1beta1.Params) | | params defines all the parameters related to commmunity | +| `params` | [Params](#kava.community.v1beta1.Params) | | params defines all the parameters related to community | | `staking_rewards_state` | [StakingRewardsState](#kava.community.v1beta1.StakingRewardsState) | | StakingRewardsState stores the internal staking reward data required to track staking rewards across blocks | diff --git a/proto/kava/community/v1beta1/genesis.proto b/proto/kava/community/v1beta1/genesis.proto index f7f6549d87..038895a7f8 100644 --- a/proto/kava/community/v1beta1/genesis.proto +++ b/proto/kava/community/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/kava-labs/kava/x/community/types"; // GenesisState defines the community module's genesis state. message GenesisState { - // params defines all the parameters related to commmunity + // params defines all the parameters related to community Params params = 1 [(gogoproto.nullable) = false]; // StakingRewardsState stores the internal staking reward data required to diff --git a/tests/e2e/e2e_precompile_genesis_test.go b/tests/e2e/e2e_precompile_genesis_test.go index 6f3f595459..5b1eb64f26 100644 --- a/tests/e2e/e2e_precompile_genesis_test.go +++ b/tests/e2e/e2e_precompile_genesis_test.go @@ -14,7 +14,7 @@ import ( "github.com/kava-labs/kava/precompile/registry" ) -// TestPrecompileGenesis tests that the the following is true for enabled precompiles: +// TestPrecompileGenesis tests that the following is true for enabled precompiles: // // - An enabled precompile has an EthAccount with matching code hash, // sequence of 1, and no public key diff --git a/x/community/spec/02_state.md b/x/community/spec/02_state.md index b2dbcb2a93..463193961d 100644 --- a/x/community/spec/02_state.md +++ b/x/community/spec/02_state.md @@ -47,7 +47,7 @@ the parameters and staking rewards state to keep track of payout between blocks. ```protobuf // GenesisState defines the community module's genesis state. message GenesisState { - // params defines all the parameters related to commmunity + // params defines all the parameters related to community Params params = 1 [(gogoproto.nullable) = false]; // StakingRewardsState stores the internal staking reward data required to diff --git a/x/community/testutil/staking_rewards.go b/x/community/testutil/staking_rewards.go index dbecab2c48..bb613b9d07 100644 --- a/x/community/testutil/staking_rewards.go +++ b/x/community/testutil/staking_rewards.go @@ -248,7 +248,7 @@ func (suite *stakingRewardsTestSuite) TestStakingRewards() { // fund withexact amount from test case suite.App.FundAccount(ctx, poolAcc.GetAddress(), sdk.NewCoins(sdk.NewCoin("ukava", tc.communityPoolFunds))) - // get starting balance of fee collector to substract later in case this is non-zero in genesis + // get starting balance of fee collector to subtract later in case this is non-zero in genesis feeCollectorAcc := accountKeeper.GetModuleAccount(ctx, authtypes.FeeCollectorName) initialFeeCollectorBalance := bankKeeper.GetBalance(ctx, feeCollectorAcc.GetAddress(), "ukava").Amount diff --git a/x/community/types/genesis.pb.go b/x/community/types/genesis.pb.go index 7f4674c065..6ecb55eed5 100644 --- a/x/community/types/genesis.pb.go +++ b/x/community/types/genesis.pb.go @@ -25,7 +25,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the community module's genesis state. type GenesisState struct { - // params defines all the parameters related to commmunity + // params defines all the parameters related to community Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` // StakingRewardsState stores the internal staking reward data required to // track staking rewards across blocks