You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accept results of a task computed by a worker during Boost workflow.
541
+
542
+
#### Parameters
543
+
544
+
| Name | Type | Description |
545
+
| ---- | ---- | ----------- |
546
+
| dealId | bytes32 | The id of the target deal. |
547
+
| index | uint256 | The index of the target task of the deal. |
548
+
| results | bytes | The results of the task computed by the worker. |
549
+
| resultsCallback | bytes | The results of the task computed by the worker that will be forwarded as call data to the callback address set by the requester. |
550
+
| authorizationSign | bytes | The authorization signed by the scheduler. authorizing the worker to push a result. |
551
+
| enclaveChallenge | address | The enclave address which can produce enclave signature. |
552
+
| enclaveSign | bytes | The signature generated from the enclave. |
553
+
554
+
### claimBoost
555
+
556
+
```solidity
557
+
function claimBoost(bytes32 dealId, uint256 index) external
558
+
```
559
+
560
+
Claim task to get a refund if task is not completed after deadline.
561
+
562
+
#### Parameters
563
+
564
+
| Name | Type | Description |
565
+
| ---- | ---- | ----------- |
566
+
| dealId | bytes32 | The ID of the deal. |
567
+
| index | uint256 | The index of the task. |
568
+
459
569
## IexecLibCore_v5
460
570
461
571
### Account
@@ -1651,112 +1761,3 @@ function manageWorkerpoolOrder(struct IexecLibOrders_v5.WorkerpoolOrderOperation
1651
1761
function manageRequestOrder(struct IexecLibOrders_v5.RequestOrderOperation _requestorderoperation) external
1652
1762
```
1653
1763
1654
-
## IexecPocoBoostAccessorsFacet
1655
-
1656
-
Access to PoCo Boost tasks must be done with PoCo Classic `IexecAccessors`.
1657
-
1658
-
### viewDealBoost
1659
-
1660
-
```solidity
1661
-
function viewDealBoost(bytes32 id) external view returns (struct IexecLibCore_v5.DealBoost deal)
Accept results of a task computed by a worker during Boost workflow.
1735
-
1736
-
#### Parameters
1737
-
1738
-
| Name | Type | Description |
1739
-
| ---- | ---- | ----------- |
1740
-
| dealId | bytes32 | The id of the target deal. |
1741
-
| index | uint256 | The index of the target task of the deal. |
1742
-
| results | bytes | The results of the task computed by the worker. |
1743
-
| resultsCallback | bytes | The results of the task computed by the worker that will be forwarded as call data to the callback address set by the requester. |
1744
-
| authorizationSign | bytes | The authorization signed by the scheduler. authorizing the worker to push a result. |
1745
-
| enclaveChallenge | address | The enclave address which can produce enclave signature. |
1746
-
| enclaveSign | bytes | The signature generated from the enclave. |
1747
-
1748
-
### claimBoost
1749
-
1750
-
```solidity
1751
-
function claimBoost(bytes32 dealId, uint256 index) external
1752
-
```
1753
-
1754
-
Claim task to get a refund if task is not completed after deadline.
0 commit comments