Skip to content

Commit

Permalink
Merge pull request #136 from metagov/feat/contract_version
Browse files Browse the repository at this point in the history
Feat/contract version
  • Loading branch information
crazyyuan authored Sep 1, 2023
2 parents 9ebde41 + 7170b2d commit e369086
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
url = https://github.com/openzeppelin/openzeppelin-contracts
[submodule "contracts/lib/openzeppelin-contracts"]
path = contracts/lib/openzeppelin-contracts
url = https://github.com/openzeppelin/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
1 change: 1 addition & 0 deletions contracts/lib/openzeppelin-contracts
Submodule openzeppelin-contracts added at fd81a9
4 changes: 2 additions & 2 deletions contracts/src/Registration.sol
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ contract EIP4824Registration is IEIP4824, AccessControl {
super.supportsInterface(interfaceId);
}

function version () external returns(string){
function version () external pure returns(string memory){
return "1.0.0";
}
}
Expand Down Expand Up @@ -281,7 +281,7 @@ contract EIP4824RegistrationSummoner {
}
}

function version () external returns(string){
function version () external pure returns(string memory){
return "1.0.0";
}
}

0 comments on commit e369086

Please sign in to comment.