multiple inheritance is tricky

This commit is contained in:
Shelly Grossman
2021-11-03 17:09:27 +02:00
parent cac49bfc2e
commit 72d4e9c29c

View File

@ -47,5 +47,5 @@ contract GovernorVotesHarness is GovernorVotes {
// havoc something
}
constructor(ERC20Votes tokenAddr) GovernorVotes(tokenAddr) {}
constructor(ERC20Votes tokenAddr, string memory name) GovernorVotes(tokenAddr) Governor(name) {}
}