governance_extensions_GovernorPreventLateQuorum.sol.patch 575 B

1234567891011121314
  1. --- governance/extensions/GovernorPreventLateQuorum.sol 2023-05-03 09:17:45.566699712 +0200
  2. +++ governance/extensions/GovernorPreventLateQuorum.sol 2023-05-04 15:18:42.657742113 +0200
  3. @@ -82,6 +82,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.