forked from cerc-io/laconicd-deprecated
14 lines
384 B
Go
14 lines
384 B
Go
|
package auction
|
||
|
|
||
|
import (
|
||
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
||
|
abci "github.com/tendermint/tendermint/abci/types"
|
||
|
"github.com/tharsis/ethermint/x/auction/keeper"
|
||
|
)
|
||
|
|
||
|
// 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{}
|
||
|
}
|