(_moduleType, _name, _address, _factoryAddress, _archived, _paused)
| 775 | |
| 776 | async function getAllModulesByType(type) { |
| 777 | function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) { |
| 778 | this.name = _name; |
| 779 | this.type = _moduleType; |
| 780 | this.address = _address; |
| 781 | this.factoryAddress = _factoryAddress; |
| 782 | this.archived = _archived; |
| 783 | this.paused = _paused; |
| 784 | } |
| 785 | |
| 786 | let modules = []; |
| 787 |
nothing calls this directly
no outgoing calls
no test coverage detected