Skip to content

Commit 01d3720

Browse files
author
dbale-altoros
committed
fix: update compiler version
1 parent bdb6ed3 commit 01d3720

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

e2e/05-max-warnings/contracts/Foo.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.8.24;
33

44
contract Foo {
55
uint256 public constant test1 = 1;

e2e/06-formatters/contracts/Foo3.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.8.24;
33

44
contract Foo {
55
uint256 public constant TEST1 = 1;

e2e/06-formatters/helpers/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const foo1Output = [
33
line: 2,
44
column: 1,
55
severity: 'Error',
6-
message: 'Compiler version >=0.6.0 does not satisfy the ^0.8.0 semver requirement',
6+
message: 'Compiler version >=0.6.0 does not satisfy the ^0.8.24 semver requirement',
77
ruleId: 'compiler-version',
88
fix: null,
99
filePath: 'contracts/Foo.sol',

0 commit comments

Comments
 (0)