Skip to content

Commit

Permalink
Changed Compiler version in all three contracts (#25)
Browse files Browse the repository at this point in the history
* Changed Compiler version in all three contracts

* Changed from 0.5.0 to 0.5.10
  • Loading branch information
Jayrajrodage authored May 5, 2023
1 parent ca49298 commit 871a9ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/Helper.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0

pragma solidity >=0.5.0 <=0.8.18;
pragma solidity >=0.5.10 <0.9.0;

/*
* Used to proxy function calls to the RLPReader for testing
Expand Down
2 changes: 1 addition & 1 deletion contracts/Migrations.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0

pragma solidity >=0.5.0 <=0.8.18;
pragma solidity >=0.5.10 <0.9.0;

contract Migrations {
address public owner;
Expand Down
2 changes: 1 addition & 1 deletion contracts/RLPReader.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author Hamdi Allam hamdi.allam97@gmail.com
* Please reach out with any questions or concerns
*/
pragma solidity >=0.5.10 <=0.8.18;
pragma solidity >=0.5.10 <0.9.0;

library RLPReader {
uint8 constant STRING_SHORT_START = 0x80;
Expand Down

0 comments on commit 871a9ad

Please sign in to comment.