()
| 29 | } |
| 30 | |
| 31 | func ModuleAccountAddrs() map[string]bool { |
| 32 | perms := ModuleAccountPerms() |
| 33 | addrs := make(map[string]bool, len(perms)) |
| 34 | for k := range perms { |
| 35 | addrs[authtypes.NewModuleAddress(k).String()] = true |
| 36 | } |
| 37 | return addrs |
| 38 | } |
no test coverage detected