From 0555c4871a466fd8e46cf7184ddceb0c74f5df32 Mon Sep 17 00:00:00 2001 From: Gas One Cent <86567384+gas1cent@users.noreply.github.com> Date: Thu, 9 Nov 2023 15:11:19 +0400 Subject: [PATCH] refactor: remove an unused error --- solidity/interfaces/modules/finality/ICallbackModule.sol | 9 --------- 1 file changed, 9 deletions(-) diff --git a/solidity/interfaces/modules/finality/ICallbackModule.sol b/solidity/interfaces/modules/finality/ICallbackModule.sol index 1990c295..d5cb064f 100644 --- a/solidity/interfaces/modules/finality/ICallbackModule.sol +++ b/solidity/interfaces/modules/finality/ICallbackModule.sol @@ -23,15 +23,6 @@ interface ICallbackModule is IFinalityModule { */ event Callback(bytes32 indexed _requestId, address indexed _target, bytes _data); - /*/////////////////////////////////////////////////////////////// - ERRORS - //////////////////////////////////////////////////////////////*/ - - /** - * @notice Thrown when the target address has no code (i.e. is not a contract) - */ - error CallbackModule_TargetHasNoCode(); - /*/////////////////////////////////////////////////////////////// STRUCTS //////////////////////////////////////////////////////////////*/