Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update compiler version #621

Merged
merged 6 commits into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: update compiler version
  • Loading branch information
dbale-altoros committed Jan 1, 2025
commit bdb6ed37817d5bb4a89fdabaab5039f830510dd4
5 changes: 1 addition & 4 deletions e2e/05-max-warnings/.solhint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": "solhint:all",
"rules": {
"compiler-version": "off"
}
"extends": "solhint:all"
}
5 changes: 1 addition & 4 deletions e2e/06-formatters/.solhint.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": "solhint:all",
"rules": {
"compiler-version": "off"
}
"extends": "solhint:all"
}
2 changes: 1 addition & 1 deletion e2e/06-formatters/contracts/Foo2.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
pragma solidity >=0.8.24;

contract Foo {
uint256 public constant test1 = 1;
Expand Down
Loading