multiple inheritance is tricky x2

This commit is contained in:
Aleksander Kryukov
2021-11-03 17:24:35 +02:00
parent 2d33674870
commit 1c35a7dad0

View File

@ -41,6 +41,7 @@ contract GovernorVotesQuorumFractionHarness is GovernorVotesQuorumFraction {
// havoc something
}
constructor(string memory name) Governor(name) {}
constructor(ERC20Votes tokenAddr, string memory name, uint256 quorumNumeratorValue)
GovernorVotesQuorumFraction(quorumNumeratorValue) GovernorVotes(tokenAddr) Governor(name) {}
}