diff --git a/app/ante/eip712_test.go b/app/ante/eip712_test.go index 91504d69..f50063f3 100644 --- a/app/ante/eip712_test.go +++ b/app/ante/eip712_test.go @@ -493,7 +493,7 @@ func (suite *EIP712TestSuite) TestEIP712Tx() { usdxToMintAmt: 99, }, { - name: "fails when convertion more erc20 usdc than balance", + name: "fails when conversion more erc20 usdc than balance", usdcDepositAmt: 51_000, usdxToMintAmt: 100, errMsg: "transfer amount exceeds balance", diff --git a/app/params/doc.go b/app/params/doc.go index c8efce8f..44001125 100644 --- a/app/params/doc.go +++ b/app/params/doc.go @@ -5,7 +5,7 @@ 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. -You can repace the default values for the weights by providing a params.json +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/app/tally_handler_test.go b/app/tally_handler_test.go index 42344562..6f178396 100644 --- a/app/tally_handler_test.go +++ b/app/tally_handler_test.go @@ -136,7 +136,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Falsef(passes, "expected proposal to fail, tally: %v", tally) - suite.Truef(burns, "expected desposit to be burned, tally: %v", tally) + suite.Truef(burns, "expected deposit to be burned, tally: %v", tally) }) suite.Run("VetoedFails", func() { suite.SetupTest() @@ -151,7 +151,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Falsef(passes, "expected proposal to fail, tally: %v", tally) - suite.Truef(burns, "expected desposit to be burned, tally: %v", tally) + suite.Truef(burns, "expected deposit to be burned, tally: %v", tally) }) suite.Run("UnvetoedAndYesAboveThresholdPasses", func() { suite.SetupTest() @@ -168,7 +168,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Truef(passes, "expected proposal to pass, tally: %v", tally) - suite.Falsef(burns, "expected desposit to not burn, tally: %v", tally) + suite.Falsef(burns, "expected deposit to not burn, tally: %v", tally) }) suite.Run("UnvetoedAndYesBelowThresholdFails", func() { suite.SetupTest() @@ -185,7 +185,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Falsef(passes, "expected proposal to pass, tally: %v", tally) - suite.Falsef(burns, "expected desposit to not burn, tally: %v", tally) + suite.Falsef(burns, "expected deposit to not burn, tally: %v", tally) }) suite.Run("NotEnoughStakeFails", func() { suite.SetupTest() @@ -197,7 +197,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Falsef(passes, "expected proposal to pass, tally: %v", tally) - suite.Falsef(burns, "expected desposit to not burn, tally: %v", tally) + suite.Falsef(burns, "expected deposit to not burn, tally: %v", tally) }) suite.Run("UnvetoedAndAllAbstainedFails", func() { suite.SetupTest() @@ -210,7 +210,7 @@ func (suite *tallyHandlerSuite) TestTallyOutcomes() { passes, burns, tally := suite.tallier.Tally(suite.ctx, proposal) suite.Falsef(passes, "expected proposal to pass, tally: %v", tally) - suite.Falsef(burns, "expected desposit to not burn, tally: %v", tally) + suite.Falsef(burns, "expected deposit to not burn, tally: %v", tally) }) }