From 8fbea4a7e208371429f9580a56d704f7ea5082f7 Mon Sep 17 00:00:00 2001 From: Gas One Cent <86567384+gas1cent@users.noreply.github.com> Date: Tue, 12 Dec 2023 12:29:02 +0400 Subject: [PATCH] feat: remove a TODO comment --- solidity/contracts/Oracle.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/solidity/contracts/Oracle.sol b/solidity/contracts/Oracle.sol index 6291041..79c3633 100644 --- a/solidity/contracts/Oracle.sol +++ b/solidity/contracts/Oracle.sol @@ -134,8 +134,6 @@ contract Oracle is IOracle { revert Oracle_AlreadyFinalized(_response.requestId); } - // TODO: Allow multiple disputes per response to prevent an attacker from starting and losing a dispute, - // making it impossible for non-malicious actors to dispute a response? if (disputeOf[_dispute.responseId] != bytes32(0)) { revert Oracle_ResponseAlreadyDisputed(_dispute.responseId); }