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.
5 lines
166 B
5 lines
166 B
3 years ago
|
import "../../contracts/token/ERC20/extensions/ERC20Votes.sol";
|
||
|
|
||
|
contract ERC20VotesHarness is ERC20Votes {
|
||
|
constructor(string memory name) ERC20Permit(name) {}
|
||
|
}
|