Handle Err

This commit is contained in:
Joel Smith 2024-09-09 13:00:55 -05:00
parent 91843a7b6e
commit 0ed67ccbda
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ func InitGenesis(
// genesis.json are in block 0.
ctx = ctx.WithBlockHeight(1 - sdk.ValidatorUpdateDelay)
keeper.SetParams(ctx, data.Params)
if err := keeper.SetParams(ctx, data.Params); err != nil {
panic(err)
}
keeper.SetLastTotalPower(ctx, data.LastTotalPower)
for _, validator := range data.Validators {