Skip to content

Commit

Permalink
fix: conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-manuel committed Jun 14, 2024
2 parents 01ed799 + 4336079 commit 2bb7f19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Executor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ contract Executor is IExecutor, AccessControl {
isActionQueued[actionHash] = true;
}

ActionsSet storage actionsSet =_actionsSets[actionsSetId];
ActionsSet storage actionsSet = _actionsSets[actionsSetId];

actionsSet.targets = targets;
actionsSet.values = values;
Expand All @@ -124,7 +124,7 @@ contract Executor is IExecutor, AccessControl {
function execute(uint256 actionsSetId) external payable override {
if (getCurrentState(actionsSetId) != ActionsSetState.Queued) revert OnlyQueuedActions();

ActionsSet storage actionsSet =_actionsSets[actionsSetId];
ActionsSet storage actionsSet = _actionsSets[actionsSetId];

if (block.timestamp < actionsSet.executionTime) revert TimelockNotFinished();

Expand Down

0 comments on commit 2bb7f19

Please sign in to comment.