Skip to content

Commit

Permalink
fix: change default min-gas-price
Browse files Browse the repository at this point in the history
  • Loading branch information
Bacbia3696 committed Jul 17, 2023
1 parent bd76b9e commit eecb63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/gentlemint/keeper/migration.go
Expand Up @@ -23,7 +23,7 @@ func (m Migrator) Migrate1to2(ctx sdk.Context) error {

// this version add paramSpace min_gas_price for `gentlemint`
func (m Migrator) Migrate2to3(ctx sdk.Context) error {
// default min-gas-prices is 100_000_000 nshr
m.keeper.SetMinGasPriceParam(ctx, sdk.NewDecCoins(sdk.NewDecCoin(denom.Base, sdk.NewInt(100_000))))
// default min-gas-prices is 10_000_000 nshr
m.keeper.SetMinGasPriceParam(ctx, sdk.NewDecCoins(sdk.NewDecCoin(denom.Base, sdk.NewInt(10_000))))
return nil
}

0 comments on commit eecb63d

Please sign in to comment.