Skip to content

Commit

Permalink
Merge pull request #712 from aave/fix/711-interest-rate-inheritable
Browse files Browse the repository at this point in the history
Make DefaultInterestRateStrategy contract inheritable
  • Loading branch information
miguelmtzinf authored Sep 6, 2022
2 parents 095cece + 0311475 commit f3e037b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
pragma solidity ^0.8.0;

import {IERC20} from '../../dependencies/openzeppelin/contracts/IERC20.sol';
import {WadRayMath} from '../libraries/math/WadRayMath.sol';
Expand Down Expand Up @@ -191,8 +191,8 @@ contract DefaultReserveInterestRateStrategy is IReserveInterestRateStrategy {
}

/// @inheritdoc IReserveInterestRateStrategy
function calculateInterestRates(DataTypes.CalculateInterestRatesParams calldata params)
external
function calculateInterestRates(DataTypes.CalculateInterestRatesParams memory params)
public
view
override
returns (
Expand Down

0 comments on commit f3e037b

Please sign in to comment.