(_moduleType, _name, _address, _factoryAddress, _archived, _paused)
| 2622 | |
| 2623 | async function getAllModulesByType(type) { |
| 2624 | function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) { |
| 2625 | this.name = _name; |
| 2626 | this.type = _moduleType; |
| 2627 | this.address = _address; |
| 2628 | this.factoryAddress = _factoryAddress; |
| 2629 | this.archived = _archived; |
| 2630 | this.paused = _paused; |
| 2631 | } |
| 2632 | |
| 2633 | let modules = []; |
| 2634 |
nothing calls this directly
no outgoing calls
no test coverage detected