Skip to content

Commit 6a5ae2f

Browse files
committed
Merge fixes
1 parent 8f3c6a3 commit 6a5ae2f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

contracts/ModuleRegistry.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ contract ModuleRegistry is IModuleRegistry, EternalStorage {
346346
* @notice Returns the verified status, and reputation of the entered Module Factory
347347
* @param _factoryAddress is the address of the module factory
348348
* @return bool indicating whether module factory is verified
349+
* @return address of the factory owner
349350
* @return address array which contains the list of securityTokens that use that module factory
350351
*/
351352
function getFactoryDetails(address _factoryAddress) external view returns(bool, address, address[] memory) {

contracts/interfaces/IModuleRegistry.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ interface IModuleRegistry {
5151
* @notice Returns the verified status, and reputation of the entered Module Factory
5252
* @param _factoryAddress is the address of the module factory
5353
* @return bool indicating whether module factory is verified
54+
* @return address of the factory owner
5455
* @return address array which contains the list of securityTokens that use that module factory
5556
*/
56-
function getFactoryDetails(address _factoryAddress) external view returns(bool isVerified, address[] memory usingTokens);
57+
function getFactoryDetails(address _factoryAddress) external view returns(bool isVerified, address factoryOwner, address[] memory usingTokens);
5758

5859
/**
5960
* @notice Returns all the tags related to the a module type which are valid for the given token

0 commit comments

Comments
 (0)