diff --git a/solidity/interfaces/modules/response/IResponseModule.sol b/solidity/interfaces/modules/response/IResponseModule.sol index 47e5f13..6d7d908 100644 --- a/solidity/interfaces/modules/response/IResponseModule.sol +++ b/solidity/interfaces/modules/response/IResponseModule.sol @@ -17,4 +17,12 @@ interface IResponseModule is IModule { * @param _sender The creator of the response */ function propose(IOracle.Request calldata _request, IOracle.Response calldata _response, address _sender) external; + + /** + * @notice Refunds the proposer and revert + * + * @param _request The request + * @param _response The unutilized response + */ + function releaseUnutilizedResponse(IOracle.Request calldata _request, IOracle.Response calldata _response) external; }