Skip to content

Commit

Permalink
fix: solidity pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
TarekkMA committed Jan 14, 2025
1 parent 2dcb623 commit 0a8d9b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ts-tests/contracts/ECRecoverTests.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.8.2;
pragma solidity >=0.8.2 <0.9.0;

contract ECRecoverTests {
function ecrecover(bytes memory input) public returns(bytes memory) {
Expand Down
2 changes: 1 addition & 1 deletion ts-tests/contracts/ExplicitRevertReason.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.8.2;
pragma solidity >=0.8.2 <0.9.0;

contract ExplicitRevertReason {
function max10(uint256 a) public returns (uint256) {
Expand Down
2 changes: 1 addition & 1 deletion ts-tests/contracts/Test.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pragma solidity 0.8.2;
pragma solidity >=0.8.2 <0.9.0;

contract Test {
function multiply(uint a) public pure returns(uint d) {
Expand Down

0 comments on commit 0a8d9b3

Please sign in to comment.