Skip to content

Commit

Permalink
check error
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerKSI committed Sep 13, 2023
1 parent e52004b commit a1961c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/upgrades/v2_6/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,12 @@ func CreateUpgradeHandler(
return nil, err
}

keepers.GlobalfeeKeeper.SetParams(ctx, globalfeetypes.Params{
err = keepers.GlobalfeeKeeper.SetParams(ctx, globalfeetypes.Params{
MinimumGasPrices: sdk.DecCoins{sdk.NewDecCoinFromDec("uband", sdk.NewDecWithPrec(25, 4))},
})
if err != nil {
return nil, err
}

return vm, nil
}
Expand Down

0 comments on commit a1961c4

Please sign in to comment.