()
| 1083 | } |
| 1084 | |
| 1085 | func (app *App) ModuleAccountAddrsForBankModule() map[string]bool { |
| 1086 | modAccAddrs := make(map[string]bool) |
| 1087 | for acc := range maccPerms { |
| 1088 | modAccAddrs[authtypes.NewModuleAddress(acc).String()] = true |
| 1089 | } |
| 1090 | return modAccAddrs |
| 1091 | } |
| 1092 | |
| 1093 | // ModuleAccountAddrs returns all the app's module account addresses. |
| 1094 | func (app *App) ModuleAccountAddrs() map[string]bool { |