Skip to content

Commit

Permalink
include alloc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Jan 8, 2025
1 parent dde70d6 commit 62cc687
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x/alloc/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,9 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw
func (AppModule) ConsensusVersion() uint64 { return 4 }

// BeginBlock executes all ABCI BeginBlock logic respective to the alloc module.
func (am AppModule) BeginBlock(ctx sdk.Context) {
func (am AppModule) BeginBlock(ctx context.Context) error {

Check warning on line 161 in x/alloc/module.go

View check run for this annotation

Codecov / codecov/patch

x/alloc/module.go#L161

Added line #L161 was not covered by tests
BeginBlocker(ctx, am.keeper)
return nil

Check warning on line 163 in x/alloc/module.go

View check run for this annotation

Codecov / codecov/patch

x/alloc/module.go#L163

Added line #L163 was not covered by tests
}

// EndBlock executes all ABCI EndBlock logic respective to the alloc module. It
Expand Down

0 comments on commit 62cc687

Please sign in to comment.