e90b21bc8e
1. add bond,auction, nameserivce module 2. update to v0.12.2 ethermint version 3. fix the test cases 4. add gql server
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{}
|
|
}
|