Skip to content

Commit

Permalink
tasks: fix task interface
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalende committed Apr 4, 2024
1 parent 7ba59a8 commit 795f565
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/tasks/contracts/interfaces/ITask.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
pragma solidity >=0.8.0;

import './base/IBaseTask.sol';
import './base/IPausableTask.sol';
import './base/IGasLimitedTask.sol';
import './base/ITimeLockedTask.sol';
import './base/ITokenIndexedTask.sol';
Expand All @@ -28,6 +29,7 @@ import './base/IVolumeLimitedTask.sol';
*/
interface ITask is
IBaseTask,
IPausableTask,
IGasLimitedTask,
ITimeLockedTask,
ITokenIndexedTask,
Expand Down

0 comments on commit 795f565

Please sign in to comment.