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

🔥 Remove unneeded handlers #111

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
29 changes: 0 additions & 29 deletions x/iscn/handler.go

This file was deleted.

4 changes: 1 addition & 3 deletions x/iscn/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry) {
keeper.RegisterInvariants(ir, am.keeper)
}

func (am AppModule) Route() sdk.Route {
return sdk.NewRoute(types.RouterKey, NewHandler(am.keeper))
}
func (am AppModule) Route() sdk.Route { return sdk.Route{} }

func (AppModule) QuerierRoute() string {
return types.QuerierRoute
Expand Down
80 changes: 0 additions & 80 deletions x/likenft/handler.go

This file was deleted.

4 changes: 1 addition & 3 deletions x/likenft/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ func (am AppModule) Name() string {
}

// Route returns the capability module's message routing key.
func (am AppModule) Route() sdk.Route {
return sdk.NewRoute(types.RouterKey, NewHandler(am.keeper))
}
func (am AppModule) Route() sdk.Route { return sdk.Route{} }

// QuerierRoute returns the capability module's query routing key.
func (AppModule) QuerierRoute() string { return types.QuerierRoute }
Expand Down