Skip to content

Commit

Permalink
fix: missing arg
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-vagabond committed Sep 20, 2023
1 parent db83365 commit 10d3056
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/margin/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw
func (AppModule) ConsensusVersion() uint64 { return 2 }

// BeginBlock contains the logic that is automatically triggered at the beginning of each block
func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {
am.keeper.BeginBlocker()
func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {
am.keeper.BeginBlocker(ctx)
}

// EndBlock contains the logic that is automatically triggered at the end of each block
Expand Down

0 comments on commit 10d3056

Please sign in to comment.