package app
import(
sdk "github.com/cosmos/cosmos-sdk/types")// BeginBlockForks is intended to be ran in a chain upgrade.
funcBeginBlockForks(ctx sdk.Context,app*App){for_,fork:=range Forks {if ctx.BlockHeight()== fork.UpgradeHeight{
fork.BeginForkLogic(ctx,&app.AppKeepers)return}}}