diff --git a/contracts/ProxyLogics/InstaCompSave.sol b/contracts/ProxyLogics/InstaCompSave.sol index eedb8f0..b5b644e 100644 --- a/contracts/ProxyLogics/InstaCompSave.sol +++ b/contracts/ProxyLogics/InstaCompSave.sol @@ -378,16 +378,6 @@ contract CompoundSave is CompoundResolver { contract InstaCompSave is CompoundSave { - uint public version; - - /** - * @dev setting up variables on deployment - * 1...2...3 versioning in each subsequent deployments - */ - constructor(uint _version) public { - version = _version; - } - function() external payable {} } \ No newline at end of file diff --git a/contracts/ProxyLogics/InstaSave.sol b/contracts/ProxyLogics/InstaSave.sol index 429f5b8..0944075 100644 --- a/contracts/ProxyLogics/InstaSave.sol +++ b/contracts/ProxyLogics/InstaSave.sol @@ -531,16 +531,6 @@ contract Save is GetDetails { contract InstaSave is Save { - uint public version; - - /** - * @dev setting up variables on deployment - * 1...2...3 versioning in each subsequent deployments - */ - constructor(uint _version) public { - version = _version; - } - function() external payable {} } \ No newline at end of file