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 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