EndBlock returns the end blocker for the clp module. It returns no validator updates.
(ctx sdk.Context, _ abci.RequestEndBlock)
| 176 | // EndBlock returns the end blocker for the clp module. It returns no validator |
| 177 | // updates. |
| 178 | func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate { |
| 179 | return EndBlocker(ctx, am.keeper) |
| 180 | } |
| 181 | |
| 182 | func (AppModule) ConsensusVersion() uint64 { return 5 } |