From bae4842bab96fa10b9b467bd500d7a2448e2b137 Mon Sep 17 00:00:00 2001 From: Hilmar X Date: Fri, 4 Sep 2020 10:18:00 +0200 Subject: [PATCH] updated task chain comment --- contracts/connectors/gelato.sol | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/contracts/connectors/gelato.sol b/contracts/connectors/gelato.sol index 4006516..0010585 100644 --- a/contracts/connectors/gelato.sol +++ b/contracts/connectors/gelato.sol @@ -68,7 +68,8 @@ interface IGelatoInterface { /** * @dev A Gelato Task Cycle consists of 1 or more Tasks that automatically submit - * the next one, after they have been executed. + * the next one, after they have been executed, where the total number of tasks can + * be only be an even number */ function submitTaskCycle( Provider calldata _provider, @@ -80,8 +81,9 @@ interface IGelatoInterface { /** - * @dev A Gelato Task Cycle consists of 1 or more Tasks that automatically submit - * the next one, after they have been executed. + * @dev A Gelato Task Chain consists of 1 or more Tasks that automatically submit + * the next one, after they have been executed, where the total number of tasks can + * be an odd number */ function submitTaskChain( Provider calldata _provider,