Skip to content

Commit

Permalink
docs: propose natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Nov 16, 2023
1 parent fb2b9a2 commit bfc2706
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion solidity/interfaces/modules/response/IResponseModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ import {IOracle} from '../../IOracle.sol';
* @notice Common interface for all response modules
*/
interface IResponseModule is IModule {
// TODO: natspec
/**
* @notice Creates a new response for a given request
*
* @param _request The request to create a response for
* @param _response The response to create
* @param _sender The creator of the response
*/
function propose(IOracle.Request calldata _request, IOracle.Response calldata _response, address _sender) external;
}

0 comments on commit bfc2706

Please sign in to comment.