File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
contracts/misc/interfaces Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ pragma experimental ABIEncoderV2;
55import {ILendingPoolAddressesProvider} from '../../interfaces/ILendingPoolAddressesProvider.sol ' ;
66
77interface IUiPoolDataProviderV3 {
8- struct InterestRates {
8+ struct InterestRates {
99 uint256 variableRateSlope1;
1010 uint256 variableRateSlope2;
1111 uint256 stableRateSlope1;
@@ -57,6 +57,7 @@ interface IUiPoolDataProviderV3 {
5757 uint256 optimalUsageRatio;
5858 // v3
5959 bool isPaused;
60+ bool isSiloedBorrowing;
6061 uint128 accruedToTreasury;
6162 uint128 unbacked;
6263 uint128 isolationModeTotalDebt;
@@ -101,15 +102,10 @@ interface IUiPoolDataProviderV3 {
101102 function getReservesData (ILendingPoolAddressesProvider provider )
102103 external
103104 view
104- returns (
105- AggregatedReserveData[] memory ,
106- BaseCurrencyInfo memory
107- );
105+ returns (AggregatedReserveData[] memory , BaseCurrencyInfo memory );
108106
109107 function getUserReservesData (ILendingPoolAddressesProvider provider , address user )
110108 external
111109 view
112- returns (
113- UserReserveData[] memory , uint8
114- );
110+ returns (UserReserveData[] memory , uint8 );
115111}
You can’t perform that action at this time.
0 commit comments