diff --git a/app/params/doc.go b/app/params/doc.go index 44001125..16397d4b 100644 --- a/app/params/doc.go +++ b/app/params/doc.go @@ -3,7 +3,7 @@ Package params defines the simulation parameters for the Kava app. It contains the default weights used for each transaction used on the module's simulation. These weights define the chance for a transaction to be simulated at -any gived operation. +any given operation. You can replace the default values for the weights by providing a params.json file with the weights defined for each of the transaction operations: diff --git a/contrib/devnet/init-new-chain.sh b/contrib/devnet/init-new-chain.sh index 9666a1aa..d35ffe14 100755 --- a/contrib/devnet/init-new-chain.sh +++ b/contrib/devnet/init-new-chain.sh @@ -26,7 +26,7 @@ rm -rf $DATA BINARY=kava -# Create new data directory, overwriting any that alread existed +# Create new data directory, overwriting any that already existed chainID="kavalocalnet_8888-1" $BINARY init validator --chain-id $chainID diff --git a/tests/e2e/testutil/suite.go b/tests/e2e/testutil/suite.go index 5c0d93bb..1316f345 100644 --- a/tests/e2e/testutil/suite.go +++ b/tests/e2e/testutil/suite.go @@ -217,7 +217,7 @@ func (suite *E2eTestSuite) SkipIfIbcDisabled() { } // SkipIfUpgradeDisabled should be called at the start of tests that require automated upgrades. -// It gracefully skips the current test if upgrades are dissabled. +// It gracefully skips the current test if upgrades are disabled. // Note: automated upgrade tests are currently only enabled for Kvtool suite runs. func (suite *E2eTestSuite) SkipIfUpgradeDisabled() { if suite.config.Kvtool != nil && !suite.config.Kvtool.IncludeAutomatedUpgrade { diff --git a/tests/util/sdksigner.go b/tests/util/sdksigner.go index a37676ff..9fdc59ef 100644 --- a/tests/util/sdksigner.go +++ b/tests/util/sdksigner.go @@ -358,7 +358,7 @@ func (s *KavaSigner) Run(requests <-chan KavaMsgRequest) (<-chan KavaMsgResponse currentRequest = nil } - // immediatley response to channel + // immediately response to channel responses <- *response // go to next request broadcastTxSeq++ diff --git a/x/community/keeper/disable_inflation.go b/x/community/keeper/disable_inflation.go index 1a88f53b..5ecbe862 100644 --- a/x/community/keeper/disable_inflation.go +++ b/x/community/keeper/disable_inflation.go @@ -30,7 +30,7 @@ func (k Keeper) CheckAndDisableMintAndKavaDistInflation(ctx sdk.Context) { // reset disable inflation time to ensure next call is a no-op params.UpgradeTimeDisableInflation = time.Time{} - // set staking rewards to provided intial value + // set staking rewards to provided initial value params.StakingRewardsPerSecond = params.UpgradeTimeSetStakingRewardsPerSecond k.SetParams(ctx, params)