Skip to content

Commit

Permalink
unlock pragma for interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mtabasco committed Jul 4, 2024
1 parent fe120d7 commit 59abd6b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVClusters.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVDAO.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVNetwork.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

import {ISSVNetworkCore} from "./ISSVNetworkCore.sol";
import {ISSVOperators} from "./ISSVOperators.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVNetworkCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

interface ISSVNetworkCore {
/***********/
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVOperators.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVOperatorsWhitelist.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

import {ISSVNetworkCore} from "./ISSVNetworkCore.sol";
import {ISSVWhitelistingContract} from "./external/ISSVWhitelistingContract.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISSVViews.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/external/ISSVWhitelistingContract.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

interface ISSVWhitelistingContract {
/// @notice Checks if the caller is whitelisted
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/interfaces/ISSVNetworkT.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.24;
pragma solidity ^0.8.20;

import "../../interfaces/ISSVNetworkCore.sol";
import "../../interfaces/ISSVOperators.sol";
Expand Down

0 comments on commit 59abd6b

Please sign in to comment.