From 0b215c7bd265b9b3eb4f4c63bcf513cae1f79762 Mon Sep 17 00:00:00 2001 From: aahna-ashina <95955389+aahna-ashina@users.noreply.github.com> Date: Sun, 19 Mar 2023 12:46:24 +0800 Subject: [PATCH] chore(governor): change proposal threshold Reflects the parameter change at https://www.tally.xyz/gov/sector-3/proposal/88036500606289662177521211200503660601961220224900564422598757855574876854748 --- contracts/governance/Sector3Governor.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/governance/Sector3Governor.sol b/contracts/governance/Sector3Governor.sol index 69c92b6..6be1f0e 100644 --- a/contracts/governance/Sector3Governor.sol +++ b/contracts/governance/Sector3Governor.sol @@ -10,7 +10,7 @@ import "@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFractio contract Sector3Governor is Governor, GovernorSettings, GovernorCountingSimple, GovernorVotes, GovernorVotesQuorumFraction { constructor(IVotes _token) Governor("Sector#3 Governor") - GovernorSettings(1 /* 1 block */, 50400 /* ~1 week */, 2049e14 /* 0.2049 */) + GovernorSettings(1 /* 1 block */, 50400 /* ~1 week */, 2049e15 /* 2.049 */) GovernorVotes(_token) GovernorVotesQuorumFraction(1) {}