Skip to content

Commit

Permalink
Correct initial required board member shares configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
protinam committed Jan 5, 2018
1 parent d7e3bb5 commit 7efcaf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/WyvernDAO.sol
Expand Up @@ -17,7 +17,7 @@ contract WyvernDAO is DelegatedShareholderAssociation {
string public constant name = "Project Wyvern DAO";

uint public constant TOKEN_DECIMALS = 18;
uint public constant REQUIRED_SHARES_TO_BE_BOARD_MEMBER = 200 * (10 ** TOKEN_DECIMALS); // set to ~ 0.1% of supply
uint public constant REQUIRED_SHARES_TO_BE_BOARD_MEMBER = 2000 * (10 ** TOKEN_DECIMALS); // set to ~ 0.1% of supply
uint public constant MINIMUM_QUORUM = 200000 * (10 ** TOKEN_DECIMALS); // set to 10% of supply
uint public constant DEBATE_PERIOD_MINUTES = 60 * 24 * 3; // set to 3 days

Expand Down

0 comments on commit 7efcaf1

Please sign in to comment.