31448 - [SC - Medium] Bypassing the Governances proposal threshold to...
Description
Details
/**
* @dev Part of the Governor Bravo's interface: _"The number of votes required in order for a voter to become a proposer"_.
*/
function proposalThreshold() public view override(L2Governor) returns (uint256) {
return (token.getPastTotalSupply(block.timestamp) * proposalNumerator) / PROPOSAL_DENOMINATOR;
}Impact Details
Proof of Concept
Previous31447 - [SC - High] veALCX holders are able to withdraw rewards and...Next31449 - [SC - Low] BribegetRewardForOwner should not revert if the...
Last updated
Was this helpful?