Fixed error related to InstaRegistry.sol

This commit is contained in:
Sowmayjain 2019-04-03 17:21:18 +05:30
parent c69c8970f1
commit 690547bbef

View File

@ -139,12 +139,14 @@ contract WalletRegistry is LogicRegistry {
}
/**
* @title Initializing Registry
*/
contract InstaRegistry is WalletRegistry {
constructor() public {
registry[keccak256(abi.encodePacked("admin"))] = msg.sender;
registry[keccak256(abi.encodePacked("owner"))] = msg.sender;
build();
}
}