Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
godzillaba committed Dec 20, 2023
1 parent bf8a1b1 commit 4e565d6
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pragma solidity 0.8.16;

import "@openzeppelin/contracts-upgradeable/governance/extensions/GovernorSettingsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol";
import "../interfaces/ISecurityCouncilMemberElectionGovernor.sol";
import "../interfaces/ISecurityCouncilNomineeElectionGovernor.sol";
Expand All @@ -17,7 +16,6 @@ import "../SecurityCouncilMgmtUtils.sol";
/// @notice Governor contract for selecting Security Council Nominees (phase 1 of the Security Council election process).
contract SecurityCouncilNomineeElectionGovernor is
Initializable,
EIP712Upgradeable,
GovernorUpgradeable,
GovernorVotesUpgradeable,
SecurityCouncilNomineeElectionGovernorCountingUpgradeable,
Expand Down Expand Up @@ -493,16 +491,6 @@ contract SecurityCouncilNomineeElectionGovernor is
);
}

/// @inheritdoc EIP712Upgradeable
function _EIP712NameHash() internal pure override returns (bytes32) {
return keccak256("SecurityCouncilNomineeElectionGovernor");
}

/// @inheritdoc EIP712Upgradeable
function _EIP712VersionHash() internal pure override returns (bytes32) {
return keccak256("1");
}

/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
Expand Down

0 comments on commit 4e565d6

Please sign in to comment.