multiple inheritance is tricky

This commit is contained in:
Shelly Grossman
2021-11-03 17:09:27 +02:00
committed by Aleksander Kryukov
parent e810379262
commit 2d33674870

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) {}
}