From a0f6199ea36a3e9d4240f0cbc1a9b8d85731c2d5 Mon Sep 17 00:00:00 2001 From: Hadrien Charlanes Date: Mon, 7 Jun 2021 10:26:38 +0200 Subject: [PATCH] doc: added doc to drop reserve --- contracts/interfaces/ILendingPoolConfigurator.sol | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contracts/interfaces/ILendingPoolConfigurator.sol b/contracts/interfaces/ILendingPoolConfigurator.sol index 75b8c47e..312aebed 100644 --- a/contracts/interfaces/ILendingPoolConfigurator.sol +++ b/contracts/interfaces/ILendingPoolConfigurator.sol @@ -404,4 +404,10 @@ interface ILendingPoolConfigurator { * @param flashBorrower The address of the unauthorized borrower **/ function unauthorizeFlashBorrower(address flashBorrower) external; + + /** + * @dev Drops a reserve entirely + * @param asset the address of the reserve to drop + **/ + function dropReserve(address asset) external; }