(_moduleType, _name, _address, _factoryAddress, _archived, _paused)
| 985 | |
| 986 | async function getAllModulesByType(type) { |
| 987 | function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) { |
| 988 | this.name = _name; |
| 989 | this.type = _moduleType; |
| 990 | this.address = _address; |
| 991 | this.factoryAddress = _factoryAddress; |
| 992 | this.archived = _archived; |
| 993 | this.paused = _paused; |
| 994 | } |
| 995 | |
| 996 | let modules = []; |
| 997 |
nothing calls this directly
no outgoing calls
no test coverage detected