Skip to content

Commit

Permalink
0.8.24
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Jul 19, 2024
1 parent 35aeb88 commit 5218f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/ApplicationManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
pragma solidity 0.8.24;

Check warning

Code scanning / Slither

Different pragma directives are used Warning

2 different versions of Solidity are used:
- Version constraint 0.8.24 is used by:
-0.8.24
-0.8.24
- Version constraint ^0.8.24 is used by:
-^0.8.24

Check warning

Code scanning / Slither

Incorrect versions of Solidity Warning

Version constraint 0.8.24 contains known severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
.
It is used by:
- 0.8.24
- 0.8.24

import {IApplicationManager} from "./IApplicationManager.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/IApplicationManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
pragma solidity 0.8.24;

interface IApplicationManager {
struct Application {
Expand Down

0 comments on commit 5218f2e

Please sign in to comment.