IBasicJobChecker
Functions
checker
This function checks whether the job can be executed by the automation vault
function checker(
IAutomationVault _automationVault,
IBasicJob _basicJob
) external pure returns (bool canExec, bytes memory execPayload);
Parameters
Name | Type | Description |
---|---|---|
_automationVault | IAutomationVault | The automation vault that will execute the job |
_basicJob | IBasicJob | The basic job that will be executed |
Returns
Name | Type | Description |
---|---|---|
canExec | bool | Whether the job can be executed |
execPayload | bytes | The payload that will be executed by the automation vault |