8000 chore: fix some function names in comment by toofooboo · Pull Request #3035 · evmos/evmos · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore: fix some function names in comment #3035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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 x/epochs/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *r
}
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (b AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
2 changes: 1 addition & 1 deletion x/erc20/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (b AppModuleBasic) GetTxCmd() *cobra.Command {
return cli.NewTxCmd()
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (b AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
2 changes: 1 addition & 1 deletion x/evm/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (AppModuleBasic) GetTxCmd() *cobra.Command {
return cli.NewTxCmd()
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
2 changes: 1 addition & 1 deletion x/feemarket/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (AppModuleBasic) RegisterInterfaces(registry codectypes.InterfaceRegistry)
types.RegisterInterfaces(registry)
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
2 changes: 1 addition & 1 deletion x/inflation/v1/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (b AppModuleBasic) RegisterGRPCGatewayRoutes(c client.Context, serveMux *ru
}
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
2 changes: 1 addition & 1 deletion x/vesting/module.go
7E1C
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (AppModuleBasic) GetTxCmd() *cobra.Command {
return cli.NewTxCmd()
}

// GetTxCmd returns the root query command for the erc20 module.
// GetQueryCmd returns the root query command for the erc20 module.
func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}
Expand Down
Loading
0