Skip to content

Commit

Permalink
remove endblock
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Feb 22, 2024
1 parent ca0c1ed commit 609a916
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions module/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ var (
_ module.AppModule = AppModule{}
_ module.AppModuleGenesis = AppModule{}
_ appmodule.HasBeginBlocker = AppModule{}
_ appmodule.HasEndBlocker = AppModule{}
)

// ConsensusVersion defines the current module consensus version.
Expand Down Expand Up @@ -133,7 +132,3 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw
func (am AppModule) BeginBlock(ctx context.Context) error {
return am.BeginBlocker(ctx)
}

func (am AppModule) EndBlock(ctx context.Context) error {
return am.EndBlocker(ctx)
}

0 comments on commit 609a916

Please sign in to comment.