mirror of
https://github.com/Instadapp/smart-contract.git
synced 2024-07-29 22:08:07 +00:00
Fixed error related to InstaRegistry.sol
This commit is contained in:
parent
c69c8970f1
commit
690547bbef
|
@ -139,12 +139,14 @@ contract WalletRegistry is LogicRegistry {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @title Initializing Registry
|
||||||
|
*/
|
||||||
contract InstaRegistry is WalletRegistry {
|
contract InstaRegistry is WalletRegistry {
|
||||||
|
|
||||||
constructor() public {
|
constructor() public {
|
||||||
registry[keccak256(abi.encodePacked("admin"))] = msg.sender;
|
registry[keccak256(abi.encodePacked("admin"))] = msg.sender;
|
||||||
registry[keccak256(abi.encodePacked("owner"))] = msg.sender;
|
registry[keccak256(abi.encodePacked("owner"))] = msg.sender;
|
||||||
build();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user