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

chore: sdk 50 basic module manager #607

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
removed commented code
  • Loading branch information
swelf19 committed Jul 2, 2024
commit d2f25d2ed3aef52f266e48ca2dacf2ab8f317262
39 changes: 0 additions & 39 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,45 +231,6 @@ var (
// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string

// ModuleBasics defines the module BasicManager is in charge of setting up basic,
// non-dependant module elements, such as codec registration
// and genesis verification.
// ModuleBasics = module.NewBasicManager(
// auth.AppModuleBasic{},
// authzmodule.AppModuleBasic{},
// bank.AppModuleBasic{},
// capability.AppModuleBasic{},
// genutil.NewAppModuleBasic(genutiltypes.DefaultMessageValidator),
// params.AppModuleBasic{},
// crisis.AppModuleBasic{},
// slashing.AppModuleBasic{},
// feegrantmodule.AppModuleBasic{},
// ibc.AppModuleBasic{},
// ica.AppModuleBasic{},
// tendermint.AppModuleBasic{},
// upgrade.AppModuleBasic{},
// evidence.AppModuleBasic{},
// transferSudo.AppModuleBasic{},
// vesting.AppModuleBasic{},
// ccvconsumer.AppModuleBasic{},
// wasm.AppModuleBasic{},
// tokenfactory.AppModuleBasic{},
// interchainqueries.AppModuleBasic{},
// interchaintxs.AppModuleBasic{},
// feerefunder.AppModuleBasic{},
// feeburner.AppModuleBasic{},
// contractmanager.AppModuleBasic{},
// cron.AppModuleBasic{},
// ibchooks.AppModuleBasic{},
// packetforward.AppModuleBasic{},
// auction.AppModuleBasic{},
// globalfee.AppModule{},
// dex.AppModuleBasic{},
// ibcswap.AppModuleBasic{},
// oracle.AppModuleBasic{},
// marketmap.AppModuleBasic{},
// )

// module account permissions
maccPerms = map[string][]string{
authtypes.FeeCollectorName: nil,
Expand Down
Loading