doc: added doc to drop reserve

This commit is contained in:
Hadrien Charlanes 2021-06-07 10:26:38 +02:00
parent 648604930e
commit a0f6199ea3

View File

@ -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;
}