Skip to content

Commit

Permalink
chore: remove resolved todos
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Nov 15, 2024
1 parent 9153e5d commit 13be099
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/contracts/CouncilArbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ contract CouncilArbitrator is ICouncilArbitrator {
if (getAnswer[_disputeId] != IOracle.DisputeStatus.None) revert CouncilArbitrator_DisputeAlreadyArbitrated();

getAnswer[_disputeId] = _award;
// TODO: Make sure the access control is correct
IAccessController.AccessControl memory _accessControl =
IAccessController.AccessControl({user: address(this), data: bytes('')});

Expand Down
1 change: 0 additions & 1 deletion src/contracts/EBORequestCreator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ contract EBORequestCreator is IEBORequestCreator {
_requestModuleData.chainId = _chainId;
_requestData.requestModuleData = abi.encode(_requestModuleData);

// TODO: Make sure the access control is correct
IAccessController.AccessControl memory _accessControl =
IAccessController.AccessControl({user: address(this), data: bytes('')});
_requestId = ORACLE.createRequest(_requestData, bytes32(0), _accessControl);
Expand Down

0 comments on commit 13be099

Please sign in to comment.