-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #297 from PolymathNetwork/fix_namespace_squatting_…
…in_MR Fix namespace squatting in MR
- Loading branch information
Showing
27 changed files
with
532 additions
and
541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
pragma solidity ^0.4.24; | ||
|
||
import "../ModuleRegistry.sol"; | ||
|
||
/** | ||
* @title Registry contract for issuers to register their security tokens | ||
*/ | ||
contract MockModuleRegistry is ModuleRegistry { | ||
|
||
/// @notice It is dummy functionality | ||
/// Alert! Alert! Do not use it for the mainnet release | ||
function addMoreReputation(address _moduleFactory, address[] _tokens) public onlyOwner { | ||
for (uint8 i = 0; i < _tokens.length; i++) { | ||
pushArray(Encoder.getKey('reputation', _moduleFactory), _tokens[i]); | ||
} | ||
} | ||
|
||
|
||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.