Skip to content

Commit eab4f77

Browse files
fix: import paths
1 parent bece717 commit eab4f77

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

certora/harnesses/ERC20Helper.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
22
pragma solidity 0.8.26;
33

4-
import {SafeERC20, IERC20} from "../../lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol";
4+
import {SafeERC20, IERC20} from "openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";
55

66
contract ERC20Helper {
77
using SafeERC20 for IERC20;

certora/mocks/Token0.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity >=0.8.21;
33

4-
import {ERC20} from "../../lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
4+
import {ERC20} from "openzeppelin-contracts/token/ERC20/ERC20.sol";
55

66
contract Token0 is ERC20 {
77
constructor() ERC20("Token0", "TOK0") {}

certora/mocks/VaultMock0.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
ERC20,
88
ERC4626,
99
Math
10-
} from "../../lib/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC4626.sol";
10+
} from "openzeppelin-contracts/token/ERC20/extensions/ERC4626.sol";
1111

1212
contract VaultMock0 is ERC4626 {
1313
constructor(IERC20 asset) ERC4626(asset) ERC20("VaultMock0", "V0") {}

certora/mocks/VaultMock1.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
ERC20,
88
ERC4626,
99
Math
10-
} from "../../lib/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC4626.sol";
10+
} from "openzeppelin-contracts/token/ERC20/extensions/ERC4626.sol";
1111

1212
contract VaultMock1 is ERC4626 {
1313
constructor(IERC20 asset) ERC4626(asset) ERC20("VaultMock1", "V1") {}

0 commit comments

Comments
 (0)