governance_extensions_GovernorPreventLateQuorum.sol.patch 575 B

1234567891011121314
  1. --- governance/extensions/GovernorPreventLateQuorum.sol 2023-03-07 10:48:47.733488857 +0100
  2. +++ governance/extensions/GovernorPreventLateQuorum.sol 2023-03-15 14:14:59.121060484 +0100
  3. @@ -84,6 +84,11 @@
  4. return _voteExtension;
  5. }
  6. + // FV
  7. + function _getExtendedDeadline(uint256 proposalId) internal view returns (uint64) {
  8. + return _extendedDeadlines[proposalId];
  9. + }
  10. +
  11. /**
  12. * @dev Changes the {lateQuorumVoteExtension}. This operation can only be performed by the governance executor,
  13. * generally through a governance proposal.