From a110d1a0a9988f3713d5ada23bd8c16e10bcdba4 Mon Sep 17 00:00:00 2001 From: Seth Date: Fri, 2 Feb 2024 21:14:01 +0800 Subject: [PATCH] feat: remove version storage (cherry picked from commit 834c64ac1f3d03155514ec67d7f213ffa998e9b6) --- contracts/BaseDocumentStore.sol | 6 ------ 1 file changed, 6 deletions(-) diff --git a/contracts/BaseDocumentStore.sol b/contracts/BaseDocumentStore.sol index 5edcffc..249888d 100644 --- a/contracts/BaseDocumentStore.sol +++ b/contracts/BaseDocumentStore.sol @@ -15,11 +15,6 @@ contract BaseDocumentStore is Initializable { */ string public name; - /** - * @notice The version of the contract - */ - string public version; - /** * @notice A mapping of the document hash to the block number that was issued */ @@ -47,7 +42,6 @@ contract BaseDocumentStore is Initializable { * @param _name The name of the contract */ function __BaseDocumentStore_init(string memory _name) internal onlyInitializing { - version = "2.3.0"; name = _name; }