Skip to content

Commit

Permalink
feat: validate-view (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashitakah authored Jul 22, 2024
1 parent a0a9b62 commit 2a1bfe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/interfaces/IModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ interface IModule {
* @param _encodedParameters The encoded parameters for the request
* @return _valid Boolean indicating if the parameters are valid or not
*/
function validateParameters(bytes calldata _encodedParameters) external pure returns (bool _valid);
function validateParameters(bytes calldata _encodedParameters) external view returns (bool _valid);

/**
* @notice Returns the name of the module.
Expand Down

0 comments on commit 2a1bfe7

Please sign in to comment.