Skip to content

Commit

Permalink
chore: Strict 0.8.7 (C4 #23) (#42)
Browse files Browse the repository at this point in the history
* chore: Remove TODO on pullFunds (c4 #10)

* chore: strict 0.8.7 (c4 #23)
  • Loading branch information
deluca-mike authored Dec 12, 2021
1 parent 28663ec commit 0ab8614
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion contracts/DebtLocker.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

import { IMapleProxyFactory } from "../modules/maple-proxy-factory/contracts/interfaces/IMapleProxyFactory.sol";

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

import { IMapleProxyFactory, MapleProxyFactory } from "../modules/maple-proxy-factory/contracts/MapleProxyFactory.sol";

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

import { IMapleGlobalsLike, IMapleLoanLike, IPoolFactoryLike, IPoolLike } from "./interfaces/Interfaces.sol";

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

/// @title DebtLockerStorage maps the storage layout of a DebtLocker.
contract DebtLockerStorage {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IDebtLocker.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

import { IMapleProxied } from "../../modules/maple-proxy-factory/contracts/interfaces/IMapleProxied.sol";

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

import { IMapleProxyFactory } from "../../modules/maple-proxy-factory/contracts/interfaces/IMapleProxyFactory.sol";

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

interface IERC20Like {

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/DebtLocker.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

import { TestUtils } from "../../modules/contract-test-utils/contracts/test.sol";
import { MockERC20 } from "../../modules/erc20/src/test/mocks/MockERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/mocks/DebtLockerHarness.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

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

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/mocks/ManipulatableDebtLocker.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

import { IMapleLoanLike } from "../../interfaces/Interfaces.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/mocks/Mocks.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.7;
pragma solidity 0.8.7;

import { IERC20 } from "../../../modules/erc20/src/interfaces/IERC20.sol";
import { ILiquidatorLike } from "../../../modules/liquidations/contracts/interfaces/Interfaces.sol";
Expand Down

0 comments on commit 0ab8614

Please sign in to comment.