6 lines
203 B
Solidity
6 lines
203 B
Solidity
import "../munged/token/ERC20/extensions/ERC20Votes.sol";
|
|
|
|
contract ERC20VotesHarness is ERC20Votes {
|
|
constructor(string memory name, string memory symbol) ERC20Permit(name) ERC20(name, symbol) {}
|
|
}
|