@@ -29,7 +29,7 @@ interface IPoCo {
2929 // function deposit(uint256) external returns (bool); // Token mode
3030
3131 // IexecERC20
32- function approve (address spender , uint256 amount ) external returns (bool );
32+ function approve (address spender , uint256 value ) external returns (bool );
3333 function approveAndCall (
3434 address spender ,
3535 uint256 value ,
@@ -44,17 +44,17 @@ interface IPoCo {
4444 function allowance (address owner , address spender ) external view returns (uint256 );
4545
4646 // IexecOrderManagement
47- function manageAppOrder (IexecLibOrders_v5.AppOrderOperation calldata ) external ;
48- function manageDatasetOrder (IexecLibOrders_v5.DatasetOrderOperation calldata ) external ;
49- function manageWorkerpoolOrder (IexecLibOrders_v5.WorkerpoolOrderOperation calldata ) external ;
50- function manageRequestOrder (IexecLibOrders_v5.RequestOrderOperation calldata ) external ;
47+ function manageAppOrder (IexecLibOrders_v5.AppOrderOperation calldata operation ) external ;
48+ function manageDatasetOrder (IexecLibOrders_v5.DatasetOrderOperation calldata operation ) external ;
49+ function manageWorkerpoolOrder (IexecLibOrders_v5.WorkerpoolOrderOperation calldata operation ) external ;
50+ function manageRequestOrder (IexecLibOrders_v5.RequestOrderOperation calldata operation ) external ;
5151
5252 // IexecPoco1
5353 function matchOrders (
54- IexecLibOrders_v5.AppOrder calldata ,
55- IexecLibOrders_v5.DatasetOrder calldata ,
56- IexecLibOrders_v5.WorkerpoolOrder calldata ,
57- IexecLibOrders_v5.RequestOrder calldata
54+ IexecLibOrders_v5.AppOrder calldata appOrder ,
55+ IexecLibOrders_v5.DatasetOrder calldata datasetOrder ,
56+ IexecLibOrders_v5.WorkerpoolOrder calldata workerpoolOrder ,
57+ IexecLibOrders_v5.RequestOrder calldata requestOrder
5858 ) external returns (bytes32 );
5959}
6060
0 commit comments