Skip to content

Commit

Permalink
Remove remaining constructor visibility specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
andrekorol committed Dec 24, 2020
1 parent 28845d3 commit cd0dc80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/drafts/EIP712.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ abstract contract EIP712 {
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) internal {
constructor(string memory name, string memory version) {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
Expand Down

0 comments on commit cd0dc80

Please sign in to comment.