Skip to content

Commit

Permalink
feat: remove version storage
Browse files Browse the repository at this point in the history
(cherry picked from commit 834c64ac1f3d03155514ec67d7f213ffa998e9b6)
  • Loading branch information
superical committed Mar 7, 2024
1 parent c96c019 commit a110d1a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions contracts/BaseDocumentStore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit a110d1a

Please sign in to comment.