Skip to content
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 tests/cosmjs/test/erc20/register_coin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion x/smartaccount/types/v1beta1/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down