governance_extensions_GovernorTimelockControl.sol.patch 525 B

1234567891011121314
  1. --- governance/extensions/GovernorTimelockControl.sol 2023-03-07 10:48:47.733488857 +0100
  2. +++ governance/extensions/GovernorTimelockControl.sol 2023-03-13 16:18:10.255122179 +0100
  3. @@ -84,6 +84,11 @@
  4. return eta == 1 ? 0 : eta; // _DONE_TIMESTAMP (1) should be replaced with a 0 value
  5. }
  6. + // FV
  7. + function _proposalQueueId(uint256 proposalId) internal view returns (bytes32) {
  8. + return _timelockIds[proposalId];
  9. + }
  10. +
  11. /**
  12. * @dev Function to queue a proposal to the timelock.
  13. */