Removed getConfiguration interface

This commit is contained in:
Thrilok kumar 2021-04-16 22:17:50 +05:30 committed by GitHub
parent 7ce0843aa2
commit ae7deef98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,10 +35,6 @@ interface AaveInterface {
uint256 ltv, uint256 ltv,
uint256 healthFactor uint256 healthFactor
); );
function getConfiguration(address asset)
external
view
returns (ReserveConfigurationMap memory);
} }
interface AaveLendingPoolProviderInterface { interface AaveLendingPoolProviderInterface {
@ -124,4 +120,4 @@ interface ChainLinkInterface {
interface RootChainManagerInterface { interface RootChainManagerInterface {
function depositFor(address user, address token, bytes calldata depositData) external; function depositFor(address user, address token, bytes calldata depositData) external;
} }