Skip to content

Commit

Permalink
[L-01] Specific Solidity Version for Contracts (#239)
Browse files Browse the repository at this point in the history
This PR addresses the issue L-01 from the audit report.

Specifically, it implements the suggestion to not use floating pragmas,
but specific Solidity compiler versions for the contracts.
  • Loading branch information
nlordell authored Feb 7, 2024
2 parents 6de424e + df64c63 commit 3b9e8b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/4337/contracts/AddModulesLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
pragma solidity 0.8.23;

import {ISafe} from "./interfaces/Safe.sol";

Expand Down
2 changes: 1 addition & 1 deletion modules/4337/contracts/Safe4337Module.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
pragma solidity 0.8.23;

import {HandlerContext} from "@safe-global/safe-contracts/contracts/handler/HandlerContext.sol";
import {CompatibilityFallbackHandler} from "@safe-global/safe-contracts/contracts/handler/CompatibilityFallbackHandler.sol";
Expand Down

0 comments on commit 3b9e8b4

Please sign in to comment.