From bdee7c5085a9eafff8a43855bf5e1c07c2e779f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sojka?= Date: Thu, 30 Nov 2023 14:49:42 +0000 Subject: [PATCH] Increase proposal voting time to 2500 --- src/constants.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.cairo b/src/constants.cairo index 1e75463b..7930d5a8 100644 --- a/src/constants.cairo +++ b/src/constants.cairo @@ -1,6 +1,6 @@ const NEW_PROPOSAL_QUORUM: u128 = 200; // 1/200 of totalSupply required to propose an upgrade. Quorums don't take into account investors. at all, they don't count into total eligible voters, but do vote -const PROPOSAL_VOTING_TIME_BLOCKS: u64 = 2000; +const PROPOSAL_VOTING_TIME_BLOCKS: u64 = 2500; const QUORUM: u128 = 10; // 1/10 of totalSupply required to participate to pass const MINUS_ONE: felt252 = 0x800000000000011000000000000000000000000000000000000000000000000; const TEAM_TOKEN_BALANCE: u128 = 1000000000000000000;