Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronc committed Jul 1, 2019
1 parent 3a5598b commit 7b42a27
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions x/fee-delegation/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,10 @@ func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage {
}

// BeginBlock runs before a block is processed
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) sdk.Tags {
return sdk.EmptyTags()
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {
}

// EndBlock runs at the end of each block
func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) ([]abci.ValidatorUpdate, sdk.Tags) {
return []abci.ValidatorUpdate{}, sdk.EmptyTags()
func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate {
return []abci.ValidatorUpdate{}
}

0 comments on commit 7b42a27

Please sign in to comment.