Skip to content

Commit 467d380

Browse files
committed
fix(ifc): lower pragma
1 parent bd47170 commit 467d380

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/interfaces/AggregatorV3Interface.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.0;
2+
pragma solidity >=0.5.0;
33

44
/// @dev From
55
/// https://github.com/smartcontractkit/chainlink/blob/develop/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol.

src/interfaces/IChainlinkOracle.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
pragma solidity ^0.8.0;
2+
pragma solidity >=0.5.0;
33

44
import {IERC4626} from "./IERC4626.sol";
55
import {AggregatorV3Interface} from "./AggregatorV3Interface.sol";

src/interfaces/IERC4626.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
pragma solidity ^0.8.0;
2+
pragma solidity >=0.5.0;
33

44
interface IERC4626 {
55
function convertToAssets(uint256) external view returns (uint256);

0 commit comments

Comments
 (0)