From 6bc86e79a86b6624342b7d0e6c12b5c425f5030a Mon Sep 17 00:00:00 2001 From: shaito Date: Tue, 10 Dec 2024 13:00:49 -0300 Subject: [PATCH] fix: m-01 unfinalizable requests --- solidity/interfaces/IModule.sol | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solidity/interfaces/IModule.sol b/solidity/interfaces/IModule.sol index 13c25e0..7c66913 100644 --- a/solidity/interfaces/IModule.sol +++ b/solidity/interfaces/IModule.sol @@ -37,6 +37,9 @@ interface IModule is IValidator { /** * @notice Finalizes the request * + * @dev Requests could become unfinilizable if the Request object is malformed or custom modules are not properly implemented. + * Participants should call the validateParameters function for every module in the request to ensure correctness before + * interacting with requests. * @param _request The request being finalized * @param _response The final response * @param _finalizer The address that initiated the finalization