mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
openzeppelin-contracts/certora/harnesses/VotesHarness.sol

14 lines
308 B

pragma solidity ^0.8.0;
import "../munged/governance/utils/Votes.sol";
contract VotesHarness is Votes {
constructor(string memory name, string memory version) EIP712(name, version) {
}
function _getVotingUnits(address) public override returns (uint256) {
return 0;
}
}