From 690547bbefd41b6e9f9cd755d63ae2cb2127219f Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Wed, 3 Apr 2019 17:21:18 +0530 Subject: [PATCH] Fixed error related to InstaRegistry.sol --- contracts/{WalletRegistry.sol => InstaRegistry.sol} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename contracts/{WalletRegistry.sol => InstaRegistry.sol} (99%) diff --git a/contracts/WalletRegistry.sol b/contracts/InstaRegistry.sol similarity index 99% rename from contracts/WalletRegistry.sol rename to contracts/InstaRegistry.sol index 5b19321..da460ca 100644 --- a/contracts/WalletRegistry.sol +++ b/contracts/InstaRegistry.sol @@ -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(); } } \ No newline at end of file