Skip to content

Commit

Permalink
fix: greater or equal
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed Apr 5, 2024
1 parent c705ddc commit 3faf901
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion contracts/Keeper.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

interface IStrategy {
function report() external returns (uint256, uint256);
Expand Down
2 changes: 1 addition & 1 deletion contracts/Managers/RoleManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {Registry} from "../registry/Registry.sol";
import {Accountant} from "../accountants/Accountant.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/Deployer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

contract Deployer {
event Deployed(address addr, uint256 salt);
Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/MockERC20.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import "@openzeppelin/contracts/mocks/ERC20Mock.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/MockFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

contract MockFactory {
string public apiVersion;
Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/MockOracle.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {AprOracle} from "@periphery/AprOracle/AprOracle.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/MockStrategy.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {ERC4626Mock} from "@openzeppelin/contracts/mocks/ERC4626Mock.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/Mocks/MockTokenizedStrategy.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {TokenizedStrategy, ERC20} from "@tokenized-strategy/TokenizedStrategy.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/accountants/Accountant.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {IVault} from "@yearn-vaults/interfaces/IVault.sol";
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/accountants/RefundAccountant.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {Accountant, ERC20, SafeERC20, IVault} from "./Accountant.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/debtAllocators/DebtAllocator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/debtAllocators/DebtAllocatorFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {DebtAllocator} from "./DebtAllocator.sol";
import {Clonable} from "@periphery/utils/Clonable.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/registry/Registry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {ReleaseRegistry} from "./ReleaseRegistry.sol";
import {IVault} from "@yearn-vaults/interfaces/IVault.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/registry/RegistryFactory.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/registry/ReleaseRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity 0.8.18;
pragma solidity >=0.8.18;

import {Governance} from "@periphery/utils/Governance.sol";

Expand Down

0 comments on commit 3faf901

Please sign in to comment.