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