14 lines
383 B
Go
14 lines
383 B
Go
package auction
|
|
|
|
import (
|
|
"github.com/cerc-io/laconicd/x/auction/keeper"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
)
|
|
|
|
// EndBlocker is called every block, returns updated validator set.
|
|
func EndBlocker(ctx sdk.Context, k keeper.Keeper) []abci.ValidatorUpdate {
|
|
k.EndBlockerProcessAuctions(ctx)
|
|
return []abci.ValidatorUpdate{}
|
|
}
|