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

fix: remove mock from genesis #774

Closed
Closed
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Bug Fixes
* (x/foundation) [\#772](https://github.com/line/lbm-sdk/pull/772) export x/foundation pool
* (app) [\#774](https://github.com/line/lbm-sdk/pull/774) remove `ibcmock` from app initializer

### Breaking Changes
* (cli) [\#773](https://github.com/line/lbm-sdk/pull/773) guide users to use generate-only in messages for x/foundation authority
Expand Down
4 changes: 0 additions & 4 deletions simapp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,6 @@ func NewSimApp(
authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AccountKeeper, app.BankKeeper, app.interfaceRegistry),
transferModule,
icaModule,
mockModule,
)

// During begin block slashing happens after distr.BeginBlocker so that
Expand Down Expand Up @@ -563,7 +562,6 @@ func NewSimApp(
paramstypes.ModuleName,
vestingtypes.ModuleName,
icatypes.ModuleName,
ibcmock.ModuleName,
token.ModuleName,
collection.ModuleName,
wasm.ModuleName,
Expand All @@ -588,7 +586,6 @@ func NewSimApp(
upgradetypes.ModuleName,
vestingtypes.ModuleName,
icatypes.ModuleName,
ibcmock.ModuleName,
foundation.ModuleName,
token.ModuleName,
collection.ModuleName,
Expand Down Expand Up @@ -617,7 +614,6 @@ func NewSimApp(
authz.ModuleName,
ibctransfertypes.ModuleName,
icatypes.ModuleName,
ibcmock.ModuleName,
feegrant.ModuleName,
paramstypes.ModuleName,
upgradetypes.ModuleName,
Expand Down