Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem: recent fixes not released #1278

Merged
merged 8 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Changelog

## UNRELEASED
*January 2, 2023*

## v1.1.0-rc2

- [#1258](https://github.com/crypto-org-chain/cronos/pull/1258) Support hard-fork style upgrades.
- [#1272](https://github.com/crypto-org-chain/cronos/pull/1272) Update ethermint to develop, cosmos-sdk to `v0.47.7`.
- [#1273](https://github.com/crypto-org-chain/cronos/pull/1273) Enable push0 opcode in integration test.
- [#1274](https://github.com/crypto-org-chain/cronos/pull/1274) Remove authz module.
yihuang marked this conversation as resolved.
Show resolved Hide resolved

*December 11, 2023*

## v1.1.0-rc2

### Bug Fixes
yihuang marked this conversation as resolved.
Show resolved Hide resolved

- [#1215](https://github.com/crypto-org-chain/cronos/pull/1215) Update ethermint to fix of concurrent write in fee history.
Expand Down
2 changes: 1 addition & 1 deletion app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (

const (
SimAppChainID = "simulation_777-1"
SimBlockMaxGas = 81500000
SimBlockMaxGas = 815000000
TestAppChainID = "cronos_777-1"
)

Expand Down
8 changes: 8 additions & 0 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,14 @@
if err := app.CronosKeeper.SetParams(ctx, params); err != nil {
return m, err
}

feeparams := app.FeeMarketKeeper.GetParams(ctx)
feeparams.BaseFeeChangeDenominator = 300
feeparams.ElasticityMultiplier = 4
feeparams.BaseFee = sdk.NewInt(10000000000000)
feeparams.MinGasPrice = sdk.NewDec(10000000000000)
app.FeeMarketKeeper.SetParams(ctx, feeparams)

Check warning

Code scanning / gosec

Errors unhandled. Warning

Errors unhandled.
yihuang marked this conversation as resolved.
Show resolved Hide resolved

Check warning on line 140 in app/upgrades.go

View check run for this annotation

Codecov / codecov/patch

app/upgrades.go#L134-L140

Added lines #L134 - L140 were not covered by tests
return m, nil
})

Expand Down
8 changes: 0 additions & 8 deletions client/docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,6 @@
}
}
},
{
"url": "./tmp-swagger-gen/cosmos/authz/v1beta1/query.swagger.json",
"operationIds": {
"rename": {
"Params": "AuthzParams"
}
}
},
{
"url": "./tmp-swagger-gen/cosmos/feegrant/v1beta1/query.swagger.json",
"operationIds": {
Expand Down
Loading
Loading