File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
packages/sharing-smart-contract Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import {IexecOrderManagement} from "@iexec/poco/contracts/modules/interfaces/Iex
2222import {IexecPoco1} from "@iexec/poco/contracts/modules/interfaces/IexecPoco1.v8.sol " ;
2323
2424interface IPoCo is IexecOrderManagement , IexecPoco1 {
25-
2625 // Add missing functions where inheritance is not possible because
2726 // of different Solidity versions.
2827
@@ -34,7 +33,7 @@ interface IPoCo is IexecOrderManagement, IexecPoco1 {
3433 // function deposit(uint256) external returns (bool); // Token mode
3534
3635 // IexecERC20
37- function approve (address spender , uint256 amount ) external returns (bool );
36+ function approve (address spender , uint256 amount ) external returns (bool );
3837 function approveAndCall (
3938 address spender ,
4039 uint256 value ,
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ import {GhostStorage} from "./GhostStorage.sol";
1313contract HandlerGlobal is Test , GhostStorage {
1414 // ---------------------State Variables------------------------------------
1515 // TODO remove hardcoded values to make tests compatible with any chain.
16- IPoCo public constant POCO_DELEGATE =
17- IPoCo (0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f );
16+ IPoCo public constant POCO_DELEGATE = IPoCo (0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f );
1817 IRegistry public constant POCO_PROTECTED_DATA_REGISTRY =
1918 IRegistry (0x799DAa22654128d0C64d5b79eac9283008158730 );
2019 IDataProtector public constant DATA_PROTECTOR_CORE =
You can’t perform that action at this time.
0 commit comments