Skip to content

Commit

Permalink
Removed upper bound in pragma.
Browse files Browse the repository at this point in the history
  • Loading branch information
cfries committed Oct 24, 2024
1 parent 23258f4 commit ef0f3fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion assets/erc-6123/contracts/ERC20Settlement.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.7.0 <0.9.0;
pragma solidity >=0.7.0;

import "./ISDC.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/erc-6123/contracts/IERC20Settlement.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.7.0 <0.9.0;
pragma solidity >=0.7.0;



Expand Down
2 changes: 1 addition & 1 deletion assets/erc-6123/contracts/ISDC.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.7.0 <0.9.0;
pragma solidity >=0.7.0;

/*------------------------------------------- DESCRIPTION ---------------------------------------------------------------------------------------*/

Expand Down
2 changes: 1 addition & 1 deletion assets/erc-6123/contracts/SDCSingleTrade.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.7.0 <0.9.0;
pragma solidity >=0.7.0;

import "./ISDC.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion assets/erc-6123/contracts/SDCSingleTradePledgedBalance.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
pragma solidity >=0.8.0 <0.9.0;
pragma solidity >=0.8.0;

import "./SDCSingleTrade.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
Expand Down

0 comments on commit ef0f3fc

Please sign in to comment.