You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kei from Gnosis was interested in deploying a DAO with a queuedVoteRequiredPercentage = 20, the voting machine configuration is pasted below. It seems strange that the smart contracts would prohibit this, and it should be something that's at the user's discretion to set properly as long as it's >= 1.
Kei from Gnosis was interested in deploying a DAO with a queuedVoteRequiredPercentage = 20, the voting machine configuration is pasted below. It seems strange that the smart contracts would prohibit this, and it should be something that's at the user's discretion to set properly as long as it's >= 1.
Requested code change:
require(_params[0] <= 100 && _params[0] >= 1, "1 <= queuedVoteRequiredPercentage <= 100");
Original Code:
https://github.com/daostack/infra/blob/master/contracts/votingMachines/GenesisProtocolLogic.sol#L259
Config:
The text was updated successfully, but these errors were encountered: