Skip to content

Commit

Permalink
chore: bump solc version
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Nov 20, 2023
1 parent 1cef8f2 commit ff6ac75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contracts/src/tester/ConformanceTester.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;
pragma solidity ^0.8.23;

contract ConformanceTester {
string public name;
mapping(address => uint) public balances;
string public constant RevertErrorMessage = "Test Revert Error Message";
string public constant RevertErrorMessage = "Test Revert Error Message";

constructor(string memory _name) {
name = _name;
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/tester/LoadTester.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;
pragma solidity ^0.8.23;

contract LoadTester {
uint256 callCounter;
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/tokens/ERC20.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;
pragma solidity ^0.8.23;

import {ERC20 as OZ_ERC20} from "@openzeppelin/token/ERC20/ERC20.sol" ;

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/tokens/ERC721.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;
pragma solidity ^0.8.23;

import {ERC721 as OZ_ERC721} from "@openzeppelin/token/ERC721/ERC721.sol";

Expand Down

0 comments on commit ff6ac75

Please sign in to comment.