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

WIP x/mint fixes #12408

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
555779b
init commit
alexanderbez Jun 27, 2022
caa213b
updates
alexanderbez Jun 27, 2022
db9e622
updates
alexanderbez Jun 27, 2022
e6c571e
updates
alexanderbez Jun 27, 2022
44465dc
updates
alexanderbez Jun 27, 2022
b0a507c
updates
alexanderbez Jun 27, 2022
ad3c887
updates
alexanderbez Jun 27, 2022
4165e1f
Update proto/cosmos/mint/v1beta1/tx.proto
alexanderbez Jun 27, 2022
63263b7
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 27, 2022
b1333e5
updates
alexanderbez Jun 27, 2022
4760fc7
Merge branch 'bez/x-mint-migrate-params-12286' of github.com:cosmos/c…
alexanderbez Jun 27, 2022
b10bb34
updates
alexanderbez Jun 28, 2022
a732e8d
updates
alexanderbez Jun 28, 2022
e0c21c2
updates
alexanderbez Jun 28, 2022
e59470a
updates
alexanderbez Jun 28, 2022
9f4522a
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 28, 2022
d66c71f
updates
alexanderbez Jun 29, 2022
27a71a5
updates
alexanderbez Jun 30, 2022
7d8de6d
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 30, 2022
6b87e08
updates
alexanderbez Jun 30, 2022
2b54f1b
updates
alexanderbez Jun 30, 2022
b8579ad
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 30, 2022
e4c7242
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 30, 2022
36a9f70
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 30, 2022
f513347
Merge branch 'main' into bez/x-mint-migrate-params-12286
alexanderbez Jun 30, 2022
e52e528
subspace iface fix
kocubinski Jun 30, 2022
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,13 @@ Ref: https://keepachangelog.com/en/1.0.0/
* [#12153](https://github.com/cosmos/cosmos-sdk/pull/12153) Add a new `NewSimulationManagerFromAppModules` constructor, to simplify simulation wiring.
* [#12187](https://github.com/cosmos/cosmos-sdk/pull/12187) Add batch operation for x/nft module.

### State Machine Breaking

* (x/mint) [#12363](https://github.com/cosmos/cosmos-sdk/pull/12363) Migrate `x/mint` to self-managed parameters and deprecate it's usage of `x/params`.

### API Breaking Changes

* (simapp) [#XXXXX](https://github.com/cosmos/cosmos-sdk/pull/XXXXX) Move `simapp.ConvertAddrsToValAddrs` and `simapp.CreateTestPubKeys ` to respectively `simtestutil.ConvertAddrsToValAddrs` and `simtestutil.CreateTestPubKeys` (`testutil/sims`)
* (simapp) [#12334](https://github.com/cosmos/cosmos-sdk/pull/12334) Move `simapp.ConvertAddrsToValAddrs` and `simapp.CreateTestPubKeys ` to respectively `simtestutil.ConvertAddrsToValAddrs` and `simtestutil.CreateTestPubKeys` (`testutil/sims`)
* (simapp) [#12312](https://github.com/cosmos/cosmos-sdk/pull/12312) Move `simapp.EmptyAppOptions` to `simtestutil.EmptyAppOptions` (`testutil/sims`)
* (simapp) [#12312](https://github.com/cosmos/cosmos-sdk/pull/12312) Remove `skipUpgradeHeights map[int64]bool` and `homePath string` from `NewSimApp` constructor as per migration of `x/upgrade` to app-wiring.
* (testutil) [#12278](https://github.com/cosmos/cosmos-sdk/pull/12278) Move all functions from `simapp/helpers` to `testutil/sims`
Expand Down
2 changes: 1 addition & 1 deletion api/cosmos/mint/v1beta1/genesis.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/cosmos/mint/v1beta1/mint.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading