diff --git a/tests/cosmjs/test/erc20/register_coin.test.ts b/tests/cosmjs/test/erc20/register_coin.test.ts index f358b9e8..fc741592 100644 --- a/tests/cosmjs/test/erc20/register_coin.test.ts +++ b/tests/cosmjs/test/erc20/register_coin.test.ts @@ -126,7 +126,7 @@ describe('Should register a new coin', () => { // assert passed assert.equal(proposal.status.toString(), 'PROPOSAL_STATUS_PASSED'); - // get token_pairs infomation + // get token_pairs information const tokenPairsRes = await fetch('http://0.0.0.0:1317/evmos/erc20/v1/token_pairs').then(res => res.json()); // token_pairs should have the new coin diff --git a/x/smartaccount/types/v1beta1/params.go b/x/smartaccount/types/v1beta1/params.go index d51d260c..7643631a 100644 --- a/x/smartaccount/types/v1beta1/params.go +++ b/x/smartaccount/types/v1beta1/params.go @@ -46,7 +46,7 @@ func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { // code_id whitelist indicates which contract can be initialized as smart account // using gov proposal for updates paramtypes.NewParamSetPair(WhitelistCodeID, &p.WhitelistCodeID, validateWhitelistCodeID), - // list of diable messages for smartaccount + // list of disable messages for smartaccount paramtypes.NewParamSetPair(DisableMsgsList, &p.DisableMsgsList, validateDisableMsgsList), // max_gas_query limits the amount of gas that the validation query can use paramtypes.NewParamSetPair(MaxGasExecute, &p.MaxGasExecute, validateMaxGasExecute),