Skip to content
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

chore: fix some function names #1672

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 x/compute/internal/types/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func GetContractStorePrefixKey(addr sdk.AccAddress) []byte {
return append(ContractStorePrefix, addr...)
}

// GetContractStorePrefixKey returns the store prefix for the WASM contract instance
// GetContractLabelPrefix returns the store prefix for the WASM contract instance
func GetContractLabelPrefix(addr string) []byte {
return append(ContractLabelPrefix, []byte(addr)...)
}
Expand Down
2 changes: 1 addition & 1 deletion x/compute/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}

// RegisterInterfaceTypes implements InterfaceModule
// RegisterInterfaces implements InterfaceModule
func (b AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
types.RegisterInterfaces(registry)
}
Expand Down
2 changes: 1 addition & 1 deletion x/registration/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func NewHandler(k Keeper) sdk.Handler {
}
}

// filterMessageEvents returns the same events with all of type == EventTypeMessage removed.
// filteredMessageEvents returns the same events with all of type == EventTypeMessage removed.
// this is so only our top-level message event comes through
func filteredMessageEvents(manager *sdk.EventManager) []abci.Event {
events := manager.ABCIEvents()
Expand Down
2 changes: 1 addition & 1 deletion x/registration/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (AppModuleBasic) GetQueryCmd() *cobra.Command {
return cli.GetQueryCmd()
}

// RegisterInterfaceTypes implements InterfaceModule
// RegisterInterfaces implements InterfaceModule
func (b AppModuleBasic) RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
types.RegisterInterfaces(registry)
}
Expand Down
Loading