Skip to content

Commit 3bdb73f

Browse files
author
yihuang
authored
Problem: min-gas-price decimals is wrong (#1260)
* Problem: min-gas-price decimals is wrong * postpone dry-run height
1 parent 8885265 commit 3bdb73f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/forks.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func ForkV1Logic(ctx sdk.Context, app *App) {
4141
params.BaseFeeChangeDenominator = 300
4242
params.ElasticityMultiplier = 4
4343
params.BaseFee = sdk.NewInt(10000000000000)
44-
params.MinGasPrice = sdk.NewDecWithPrec(10000, 9)
44+
params.MinGasPrice = sdk.NewDec(10000000000000)
4545
app.FeeMarketKeeper.SetParams(ctx, params)
4646
}
4747

@@ -54,7 +54,7 @@ var (
5454
}
5555
ForkV1Dryrun = Fork{
5656
UpgradeName: "v1.0.x-base-fee",
57-
UpgradeHeight: 5214180,
57+
UpgradeHeight: 5215165,
5858
UpgradeChainId: "tempcronosmainnet_28-1",
5959
BeginForkLogic: ForkV1Logic,
6060
}

0 commit comments

Comments
 (0)