From bfa78c41a5ac3f51df1959fa7bc37b94607cd4b8 Mon Sep 17 00:00:00 2001 From: amusingaxl <112016538+amusingaxl@users.noreply.github.com> Date: Mon, 3 Feb 2025 18:53:17 -0300 Subject: [PATCH] fix: update office hours to match the sheet and the exec --- src/DssSpell.sol | 2 +- src/test/config.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DssSpell.sol b/src/DssSpell.sol index eba11fb2..7b5699af 100644 --- a/src/DssSpell.sol +++ b/src/DssSpell.sol @@ -45,7 +45,7 @@ contract DssSpellAction is DssAction { // Set office hours according to the summary function officeHours() public pure override returns (bool) { - return false; + return true; } // ---------- Rates ---------- diff --git a/src/test/config.sol b/src/test/config.sol index b208ccb7..e88cfa9f 100644 --- a/src/test/config.sol +++ b/src/test/config.sol @@ -110,7 +110,7 @@ contract Config { deployed_spell_created: 0, // use `make deploy-info tx=` to obtain the timestamp deployed_spell_block: 0, // use `make deploy-info tx=` to obtain the block number previous_spells: prevSpells, // older spells to ensure are executed first - office_hours_enabled: false, // true if officehours is expected to be enabled in the spell + office_hours_enabled: true, // true if officehours is expected to be enabled in the spell expiration_threshold: 30 days // Amount of time before spell expires });