Code comments
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 36s Details

This commit is contained in:
Ladd Hoffman 2024-03-27 20:05:53 -05:00
parent fb29abb6b3
commit 41a0025311
1 changed files with 4 additions and 1 deletions

View File

@ -84,9 +84,12 @@ contract Proposals is DAOContract {
attestation.amount = amount;
}
// Sequences of validation pool parameters
// --- Sequences of validation pool parameters ---
// Percentage that each referendum is binding
uint[3] referendaBindingPercent = [0, 1, 100];
// Whether to redistribute the binding portion of losing stakes in each referendum
bool[3] referendaRedistributeLosingStakes = [false, false, true];
// For each referendum, a numerator-denominator pair representing its quorum
uint[2][3] referendaQuora = [[1, 10], [1, 2], [1, 3]];
/// Internal convenience function to wrap our call to dao.initiateValidationPool