Skip to content

Commit 35316a9

Browse files
committed
fix: merging isPaused
1 parent 559161d commit 35316a9

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

contracts/data/DataCompressor_2_1.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: BUSL-1.1
22
// Gearbox Protocol. Generalized leverage for DeFi protocols
3-
// (c) Gearbox Holdings, 2022
3+
// (c) Gearbox Holdings, 2023
44
pragma solidity ^0.8.10;
55
pragma experimental ABIEncoderV2;
66

contracts/data/DataCompressor_3_0.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: BUSL-1.1
22
// Gearbox Protocol. Generalized leverage for DeFi protocols
3-
// (c) Gearbox Holdings, 2022
3+
// (c) Gearbox Holdings, 2023
44
pragma solidity ^0.8.10;
55
pragma experimental ABIEncoderV2;
66

contracts/data/LinearInterestModelHelper.sol

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// SPDX-License-Identifier: BUSL-1.1
2+
// Gearbox Protocol. Generalized leverage for DeFi protocols
3+
// (c) Gearbox Holdings, 2023
4+
pragma solidity ^0.8.17;
5+
16
import {LinearInterestRateModelV3} from "@gearbox-protocol/core-v3/contracts/pool/LinearInterestRateModelV3.sol";
27
import {LinearModel} from "./Types.sol";
38

contracts/data/Types.sol

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ struct CreditManagerData {
100100
// V3 Fileds
101101
QuotaInfo[] quotas;
102102
LinearModel lirm;
103+
bool isPaused;
103104
}
104105
// LIR
105106

contracts/interfaces/IDataCompressorV2_10.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
// Gearbox Protocol. Generalized leverage for DeFi protocols
3-
// (c) Gearbox Holdings, 2022
3+
// (c) Gearbox Holdings, 2023
44
pragma solidity ^0.8.10;
55

66
import {CreditAccountData, CreditManagerData, PoolData} from "../data/Types.sol";

contracts/interfaces/IDataCompressorV3_00.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
// Gearbox Protocol. Generalized leverage for DeFi protocols
3-
// (c) Gearbox Holdings, 2022
3+
// (c) Gearbox Holdings, 2023
44
pragma solidity ^0.8.10;
55

66
import {CreditAccountData, CreditManagerData, PoolData} from "../data/Types.sol";

0 commit comments

Comments
 (0)