Skip to content

Commit

Permalink
Problem: min-gas-price decimals is wrong (#1260)
Browse files Browse the repository at this point in the history
* Problem: min-gas-price decimals is wrong

* postpone dry-run height
  • Loading branch information
yihuang authored Dec 14, 2023
1 parent 8885265 commit 3bdb73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/forks.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func ForkV1Logic(ctx sdk.Context, app *App) {
params.BaseFeeChangeDenominator = 300
params.ElasticityMultiplier = 4
params.BaseFee = sdk.NewInt(10000000000000)
params.MinGasPrice = sdk.NewDecWithPrec(10000, 9)
params.MinGasPrice = sdk.NewDec(10000000000000)
app.FeeMarketKeeper.SetParams(ctx, params)
}

Expand All @@ -54,7 +54,7 @@ var (
}
ForkV1Dryrun = Fork{
UpgradeName: "v1.0.x-base-fee",
UpgradeHeight: 5214180,
UpgradeHeight: 5215165,
UpgradeChainId: "tempcronosmainnet_28-1",
BeginForkLogic: ForkV1Logic,
}
Expand Down

0 comments on commit 3bdb73f

Please sign in to comment.