From b0b6650ba0aa8cd1b61422a3c1ba2c32c1bfb05d Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Wed, 20 Mar 2019 02:50:49 +0530 Subject: [PATCH] Changed the name to InstaRegistry. --- contracts/AddressRegistry.sol | 2 +- contracts/UserWallet.sol | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/AddressRegistry.sol b/contracts/AddressRegistry.sol index e2194a4..2956a60 100644 --- a/contracts/AddressRegistry.sol +++ b/contracts/AddressRegistry.sol @@ -169,7 +169,7 @@ contract WalletRegistry is LogicRegistry { } -contract Registry is WalletRegistry { +contract InstaRegistry is WalletRegistry { constructor() public { registry[keccak256(abi.encodePacked("admin"))] = msg.sender; diff --git a/contracts/UserWallet.sol b/contracts/UserWallet.sol index 3244cd2..3873aa3 100644 --- a/contracts/UserWallet.sol +++ b/contracts/UserWallet.sol @@ -298,7 +298,6 @@ contract UserWallet is UserManager, UserNote { /** * @dev sets the "address registry", owner's last activity, owner's active period and initial owner - * @param _owner initial owner of the contract */ constructor() public { registry = msg.sender;