From 804bb297de344f07261817281153accb2092dd77 Mon Sep 17 00:00:00 2001 From: Clinton X Date: Sun, 20 Jun 2021 20:48:22 -0400 Subject: [PATCH] Update Interfaces.sol to include ADDRESSES_PROVIDER() and LENDING_POOL() --- V2/Flash Loan - Batch/Interfaces.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/V2/Flash Loan - Batch/Interfaces.sol b/V2/Flash Loan - Batch/Interfaces.sol index 3a68f1a..11411c6 100644 --- a/V2/Flash Loan - Batch/Interfaces.sol +++ b/V2/Flash Loan - Batch/Interfaces.sol @@ -90,6 +90,10 @@ interface IFlashLoanReceiver { address initiator, bytes calldata params ) external returns (bool); + + function ADDRESSES_PROVIDER() external view returns (ILendingPoolAddressesProvider); + + function LENDING_POOL() external view returns (ILendingPool); } /**