Skip to content

Commit

Permalink
More thoughtful pragma solidity versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Nov 1, 2024
1 parent 3f7ea5c commit 4fc1b38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
pragma solidity >=0.8.28;

interface IDecentAutonomousAdmin {
function version() external view returns (uint32);
Expand Down
2 changes: 1 addition & 1 deletion contracts/modules/DecentHatsModuleUtils.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.28;
pragma solidity >=0.8.28;

import {Enum} from "@gnosis.pm/safe-contracts/contracts/common/Enum.sol";
import {IAvatar} from "@gnosis.pm/zodiac/contracts/interfaces/IAvatar.sol";
Expand Down

0 comments on commit 4fc1b38

Please sign in to comment.