Submitted by Ruhum, also found by 0xmint, cccz, csanuragjain, dipp, hake, and zzzitron
Its not possible to execute a proposal through the GovernorBravoDelegate contract because the executed property of it is set to true when its queued up.
Since this means that the governance contract is unusable, it might result in locked-up funds if those were transferred to the contract before the issue comes up. Because of that Id rate it as HIGH.
executed is set to true: https://github.com/Plex-Engineer/lending-market/blob/main/contracts/Governance/GovernorBravoDelegate.sol#L63
Here, the execute() function checks whether the proposals state is Queued: https://github.com/Plex-Engineer/lending-market/blob/main/contracts/Governance/GovernorBravoDelegate.sol#L87
But, since the execute property is true, the state() function will return Executed: https://github.com/Plex-Engineer/lending-market/blob/main/contracts/Governance/GovernorBravoDelegate.sol#L117
In the original compound repo, executed is false when the proposal is queued up: https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/GovernorBravoDelegate.sol#L111
Just delete the line where executed is set to true. Since the zero-value is false anyway, youll save gas as well.
tkkwon1998 (Canto) confirmed
Alex the Entreprenerd (judge) commented:
