Skip to content

Commit

Permalink
fix: make InterestRateStrategy contract inheritable
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Sep 6, 2022
1 parent 095cece commit 0311475
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 0311475

Please sign in to comment.