Browse Source

multiple inheritance is tricky x2

Aleksander Kryukov 4 years ago
parent
commit
1c35a7dad0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      certora/harnesses/GovernorVotesQuorumFractionHarness.sol

+ 2 - 1
certora/harnesses/GovernorVotesQuorumFractionHarness.sol

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