Skip to content

Commit f8efda3

Browse files
committed
Fix formatting
1 parent 4e62381 commit f8efda3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/sharing-smart-contract/contracts/interfaces/IPoCo.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import {IexecOrderManagement} from "@iexec/poco/contracts/modules/interfaces/Iex
2222
import {IexecPoco1} from "@iexec/poco/contracts/modules/interfaces/IexecPoco1.v8.sol";
2323

2424
interface 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,

packages/sharing-smart-contract/test/invariant/handlers/HandlerGlobal.sol

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ import {GhostStorage} from "./GhostStorage.sol";
1313
contract 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 =

0 commit comments

Comments
 (0)