Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit d06f8f2

Browse files
committed
fix: make InterestRateStrategy contract inheritable
1 parent 0e9927e commit d06f8f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/protocol/pool/DefaultReserveInterestRateStrategy.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: BUSL-1.1
2-
pragma solidity 0.8.10;
2+
pragma solidity ^0.8.0;
33

44
import {IERC20} from '../../dependencies/openzeppelin/contracts/IERC20.sol';
55
import {WadRayMath} from '../libraries/math/WadRayMath.sol';
@@ -191,8 +191,8 @@ contract DefaultReserveInterestRateStrategy is IReserveInterestRateStrategy {
191191
}
192192

193193
/// @inheritdoc IReserveInterestRateStrategy
194-
function calculateInterestRates(DataTypes.CalculateInterestRatesParams calldata params)
195-
external
194+
function calculateInterestRates(DataTypes.CalculateInterestRatesParams memory params)
195+
public
196196
view
197197
override
198198
returns (

0 commit comments

Comments
 (0)